mirror of
https://github.com/systemd/systemd-stable.git
synced 2024-10-31 16:21:11 +03:00
16 lines
211 B
C
16 lines
211 B
C
/*
|
|
* utime.h
|
|
*/
|
|
|
|
#ifndef _UTIME_H
|
|
#define _UTIME_H
|
|
|
|
#include <klibc/extern.h>
|
|
#include <sys/types.h>
|
|
#include <linux/utime.h>
|
|
|
|
__extern int utime(const char *, const struct utimbuf *);
|
|
|
|
#endif /* _UTIME_H */
|
|
|