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:
Diffstat (limited to 'newlib/libc/machine/epiphany/machine/stdlib.h')
-rw-r--r--newlib/libc/machine/epiphany/machine/stdlib.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/newlib/libc/machine/epiphany/machine/stdlib.h b/newlib/libc/machine/epiphany/machine/stdlib.h
deleted file mode 100644
index 95b4063b0..000000000
--- a/newlib/libc/machine/epiphany/machine/stdlib.h
+++ /dev/null
@@ -1,15 +0,0 @@
-static __inline__ long int
-random (void)
-{
- extern int rand(void);
-
- return rand ();
-}
-
-static __inline__ void
-srandom (unsigned int seed)
-{
- void srand(unsigned int seed);
-
- srand (seed);
-}