mirror of
https://github.com/systemd/systemd.git
synced 2026-07-24 16:25:52 +00:00
15 lines
206 B
C
15 lines
206 B
C
/*
|
|
* sys/times.h
|
|
*/
|
|
|
|
#ifndef _SYS_TIMES_H
|
|
#define _SYS_TIMES_H
|
|
|
|
#include <klibc/extern.h>
|
|
#include <sys/types.h>
|
|
#include <linux/times.h>
|
|
|
|
__extern clock_t times(struct tms *);
|
|
|
|
#endif /* _SYS_TIMES_H */
|