summaryrefslogtreecommitdiffstats
path: root/src/include/stdlib.h
diff options
context:
space:
mode:
authorMichael Brown2006-12-22 02:44:51 +0100
committerMichael Brown2006-12-22 02:44:51 +0100
commit73e3e02367e1b8aa45dd3d137ba81f94ee76f0f9 (patch)
treebc68c46f939c3d48b5e6bcac1b5a1f53a142d8fe /src/include/stdlib.h
parentMake start_timer() and stop_timer() robust against incorrect usage. (diff)
downloadipxe-73e3e02367e1b8aa45dd3d137ba81f94ee76f0f9.tar.gz
ipxe-73e3e02367e1b8aa45dd3d137ba81f94ee76f0f9.tar.xz
ipxe-73e3e02367e1b8aa45dd3d137ba81f94ee76f0f9.zip
Fix prototype of random() and move to stdlib.h
Diffstat (limited to 'src/include/stdlib.h')
-rw-r--r--src/include/stdlib.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/stdlib.h b/src/include/stdlib.h
index d71ee1ab..2b6471e1 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