summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2002-07-30 23:26:18 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2002-07-30 23:26:18 +0000
commit5af0cf2fb28c54b0d8e748fb4c1c0e38a220bf2c (patch)
tree01e75ceffcd2581458b005d1db4272efb648acb9 /cpukit
parent2002-07-30 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-5af0cf2fb28c54b0d8e748fb4c1c0e38a220bf2c.tar.bz2
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.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/libcsupport/ChangeLog6
-rw-r--r--cpukit/libcsupport/include/rtems/termiostypes.h2
-rw-r--r--cpukit/libcsupport/include/sys/utime.h25
3 files changed, 7 insertions, 26 deletions
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 <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>
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 */