This commit is contained in:
commit
47aee91ef4
396 changed files with 32003 additions and 0 deletions
22
tools/psyq/include/RAND.H
Normal file
22
tools/psyq/include/RAND.H
Normal file
|
@ -0,0 +1,22 @@
|
|||
/*
|
||||
* File:rand.h
|
||||
*/
|
||||
/*
|
||||
* $PSLibId: Run-time Library Release 4.7$
|
||||
*/
|
||||
|
||||
#ifndef _RAND_H
|
||||
#define _RAND_H
|
||||
|
||||
#define RAND_MAX 32767
|
||||
|
||||
#if defined(_LANGUAGE_C_PLUS_PLUS)||defined(__cplusplus)||defined(c_plusplus)
|
||||
extern "C" {
|
||||
#endif
|
||||
extern int rand(void);
|
||||
extern void srand(unsigned int);
|
||||
#if defined(_LANGUAGE_C_PLUS_PLUS)||defined(__cplusplus)||defined(c_plusplus)
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _RAND_H */
|
Loading…
Add table
Add a link
Reference in a new issue