From 5af0cf2fb28c54b0d8e748fb4c1c0e38a220bf2c Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 30 Jul 2002 23:26:18 +0000 Subject: 2002-07-30 Joel Sherrill * 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. --- cpukit/libcsupport/ChangeLog | 6 ++++++ cpukit/libcsupport/include/rtems/termiostypes.h | 2 +- cpukit/libcsupport/include/sys/utime.h | 25 ------------------------- 3 files changed, 7 insertions(+), 26 deletions(-) delete mode 100644 cpukit/libcsupport/include/sys/utime.h (limited to 'cpukit') diff --git a/cpukit/libcsupport/ChangeLog b/cpukit/libcsupport/ChangeLog index 14e6dafec8..6d250e51a6 100644 --- a/cpukit/libcsupport/ChangeLog +++ b/cpukit/libcsupport/ChangeLog @@ -1,3 +1,9 @@ +2002-07-30 Joel Sherrill + + * 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 diff --git a/cpukit/libcsupport/include/rtems/termiostypes.h b/cpukit/libcsupport/include/rtems/termiostypes.h index adda9e0871..d59ec3da01 100644 --- a/cpukit/libcsupport/include/rtems/termiostypes.h +++ b/cpukit/libcsupport/include/rtems/termiostypes.h @@ -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; }; diff --git a/cpukit/libcsupport/include/sys/utime.h b/cpukit/libcsupport/include/sys/utime.h deleted file mode 100644 index 3e9955e61f..0000000000 --- a/cpukit/libcsupport/include/sys/utime.h +++ /dev/null @@ -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 */ -- cgit v1.2.3