Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Larmour <jifl@eCosCentric.com>2002-04-30 01:49:56 +0400
committerJonathan Larmour <jifl@eCosCentric.com>2002-04-30 01:49:56 +0400
commit822afa537ae4e03136d6262269ee460912ddabb1 (patch)
tree40167c460b17f2b082f51c6c687a0fbd24dd2b78 /newlib/libc/sys
parent29798f0d57549a89d7ec6c8717fda26347e6bbf7 (diff)
* libc/sys/arm/syscalls.c (_rename): New function. Just a stub.
(_system): New function. Ditto. * libc/stdlib/system.c (_system_r): Call _system if HAVE_SYSTEM. * configure.host: define HAVE_SYSTEM and HAVE_RENAME for xscale targets.
Diffstat (limited to 'newlib/libc/sys')
-rw-r--r--newlib/libc/sys/arm/syscalls.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/newlib/libc/sys/arm/syscalls.c b/newlib/libc/sys/arm/syscalls.c
index 3662a4687..a889e9252 100644
--- a/newlib/libc/sys/arm/syscalls.c
+++ b/newlib/libc/sys/arm/syscalls.c
@@ -15,6 +15,8 @@
#include "swi.h"
/* Forward prototypes. */
+int _system _PARAMS ((const char *));
+int _rename _PARAMS ((const char *, const char *));
int isatty _PARAMS ((int));
clock_t _times _PARAMS ((struct tms *));
int _gettimeofday _PARAMS ((struct timeval *, struct timezone *));
@@ -609,3 +611,19 @@ isatty (int fd)
return 1;
fd = fd;
}
+
+int
+_system (const char *s)
+{
+ if (s == NULL)
+ return 0;
+ errno = ENOSYS;
+ return -1;
+}
+
+int
+_rename (const char *, const char *)
+{
+ errno = ENOSYS;
+ return -1;
+}