diff options
author | Michael Brown <mcb30@etherboot.org> | 2006-12-22 01:44:51 +0000 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2006-12-22 01:44:51 +0000 |
commit | 73e3e02367e1b8aa45dd3d137ba81f94ee76f0f9 (patch) | |
tree | bc68c46f939c3d48b5e6bcac1b5a1f53a142d8fe /src/include/stdlib.h | |
parent | 66a7ed23cb3fbfea574b79d3ca4aed9f626c6e3f (diff) | |
download | ipxe-73e3e02367e1b8aa45dd3d137ba81f94ee76f0f9.tar.gz |
Fix prototype of random() and move to stdlib.h
Diffstat (limited to 'src/include/stdlib.h')
-rw-r--r-- | src/include/stdlib.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/stdlib.h b/src/include/stdlib.h index d71ee1ab2..2b6471e1c 100644 --- a/src/include/stdlib.h +++ b/src/include/stdlib.h @@ -6,6 +6,7 @@ extern void * realloc ( void *old_ptr, size_t new_size ); extern void * malloc ( size_t size ); extern void free ( void *ptr ); extern int system ( const char *command ); +extern long int random ( void ); /** * Allocate cleared memory |