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:
Joel Sherrill
2002-07-30 23:26:18 +00:00
parent 8d6db1780f
commit 5af0cf2fb2
3 changed files with 7 additions and 26 deletions

View File

@@ -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>

View File

@@ -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;
};

View File

@@ -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 */