New files added as part of file system infrastructure effort.

This commit is contained in:
Joel Sherrill
1998-11-23 19:39:45 +00:00
parent 07a3253de2
commit d1ee44e927
4 changed files with 84 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
/*
* $Id$
*/
#ifndef __SYS_IOCTL_h__
#define __SYS_IOCTL_h__
/* Functions */
int ioctl(
int fd,
int request,
...
);
#endif
/* end of include file */

View File

@@ -0,0 +1,25 @@
/*
* $Id$
*/
#ifndef __UTIME_h__
#define __UTIME_h__
/*
* POSIX 1003.1b 5.6.6 Set File Access and Modification Times
*/
struct utimbuf {
time_t actime; /* Access time */
time_t modtime; /* Modification time */
};
/* Functions */
int utime(
const char *path,
const struct utimbuf *times
);
#endif
/* end of include file */

View File

@@ -0,0 +1,17 @@
/*
* $Id$
*/
#ifndef __SYS_IOCTL_h__
#define __SYS_IOCTL_h__
/* Functions */
int ioctl(
int fd,
int request,
...
);
#endif
/* end of include file */

View File

@@ -0,0 +1,25 @@
/*
* $Id$
*/
#ifndef __UTIME_h__
#define __UTIME_h__
/*
* POSIX 1003.1b 5.6.6 Set File Access and Modification Times
*/
struct utimbuf {
time_t actime; /* Access time */
time_t modtime; /* Modification time */
};
/* Functions */
int utime(
const char *path,
const struct utimbuf *times
);
#endif
/* end of include file */