forked from Imagelibrary/rtems
2002-07-30 Joel Sherrill <joel@OARcorp.com>
* include/sys/utime.h: Removed as file is now part of the RTEMS newlib support. * Makefile.am: Reflect above. * include/rtems/termiostypes.h: Avoid use of __P.
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
2002-07-30 Joel Sherrill <joel@OARcorp.com>
|
||||
|
||||
* include/sys/utime.h: Removed as file is now part of the RTEMS
|
||||
newlib support.
|
||||
* Makefile.am: Reflect above.
|
||||
* include/rtems/termiostypes.h: Avoid use of __P.
|
||||
|
||||
2002-07-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||
|
||||
|
||||
@@ -25,7 +25,7 @@ extern "C" {
|
||||
* Wakeup callback data structure
|
||||
*/
|
||||
struct ttywakeup {
|
||||
void (*sw_pfn)__P((struct termios *tty, void *arg));
|
||||
void (*sw_pfn)(struct termios *tty, void *arg);
|
||||
void *sw_arg;
|
||||
};
|
||||
|
||||
|
||||
@@ -1,25 +0,0 @@
|
||||
/*
|
||||
* $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 */
|
||||
Reference in New Issue
Block a user