mirror of
https://github.com/AuxXxilium/eudev.git
synced 2025-01-25 16:40:31 +07:00
19 lines
486 B
C
19 lines
486 B
C
|
/*
|
||
|
* sys/time.h
|
||
|
*/
|
||
|
|
||
|
#ifndef _SYS_TIME_H
|
||
|
#define _SYS_TIME_H
|
||
|
|
||
|
#include <klibc/extern.h>
|
||
|
#include <sys/types.h>
|
||
|
#include <linux/time.h>
|
||
|
|
||
|
__extern int gettimeofday(struct timeval *, struct timezone *);
|
||
|
__extern int settimeofday(const struct timeval *, const struct timezone *);
|
||
|
__extern int getitimer(int, struct itimerval *);
|
||
|
__extern int setitimer(int, const struct itimerval *, struct itimerval *);
|
||
|
__extern int utimes(const char *, const struct timeval *);
|
||
|
|
||
|
#endif /* _SYS_TIME_H */
|