diff options
author | Joel Sherrill <joel@rtems.org> | 2016-03-22 17:50:48 -0500 |
---|---|---|
committer | Joel Sherrill <joel@rtems.org> | 2016-03-28 22:39:50 -0500 |
commit | ecf453f9635fb278cff4d4bae21a1e249313b817 (patch) | |
tree | 691716a58754527b45dd04f53f36731b12596899 /newlib/libc/stdlib/Makefile.am | |
parent | a0c477242996403344a0b3c46e6d4645a3fa672c (diff) | |
download | cygnal-ecf453f9635fb278cff4d4bae21a1e249313b817.tar.gz cygnal-ecf453f9635fb278cff4d4bae21a1e249313b817.tar.bz2 cygnal-ecf453f9635fb278cff4d4bae21a1e249313b817.zip |
Add simple versions of random() and srandom()
Prototypes also added for initstate() and setstate() but they
were not implemented in the shared newlib code.
* newlib/libc/include/cygwin/stdlib.h: Prototypes added.
* winsup/cygwin/include/cygwin/stdlib.h: Prototypes removed.
* newlib/libc/stdlib/random.c: New file.
* newlib/libc/machine/epiphany/machine/stdlib.h: Removed
* newlib/libc/stdlib/Makefile.am: Added random.c.
* newlib/libc/stdlib/stdlib.tex: Added random.def.
* newlib/libc/stdlib/Makefile.in: Regenerated.
Diffstat (limited to 'newlib/libc/stdlib/Makefile.am')
-rw-r--r-- | newlib/libc/stdlib/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/newlib/libc/stdlib/Makefile.am b/newlib/libc/stdlib/Makefile.am index 9deaf9a64..2d45d1029 100644 --- a/newlib/libc/stdlib/Makefile.am +++ b/newlib/libc/stdlib/Makefile.am @@ -50,6 +50,7 @@ GENERAL_SOURCES = \ quick_exit.c \ rand.c \ rand_r.c \ + random.c \ realloc.c \ reallocf.c \ sb_charsets.c \ @@ -282,6 +283,7 @@ CHEWOUT_FILES= \ on_exit.def \ rand.def \ rand48.def \ + random.def \ rpmatch.def \ strtod.def \ strtol.def \ |