Subversion Repositories wimsdev

Rev

Rev 8177 | Rev 8647 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8177 Rev 8195
Line 29... Line 29...
29
#define random genrand_int31
29
#define random genrand_int31
30
#define srandom init_genrand
30
#define srandom init_genrand
31
long int genrand_int31(void);
31
long int genrand_int31(void);
32
void init_genrand(unsigned long s);
32
void init_genrand(unsigned long s);
33
 
33
 
34
/* errors.c */
34
/* errors.c
35
void (*error1) (char *msg);
35
void (*error1) (char *msg);
36
void (*error2) (char *msg);
36
void (*error2) (char *msg);
37
void (*error3) (char *msg);
37
void (*error3) (char *msg);
-
 
38
*/
38
 
39
 
39
/* liblines.c */
40
/* liblines.c */
40
char *int2str(int i);
41
char *int2str(int i);
41
void *xmalloc(size_t n);
42
void *xmalloc(size_t n);
42
int msleep(int ms); /* millisecond sleeper */
43
int msleep(int ms); /* millisecond sleeper */
Line 220... Line 221...
220
#define myisspace(x) ((x)==' ' || (x)=='\t' || (x)=='\n' || (x)=='\r')
221
#define myisspace(x) ((x)==' ' || (x)=='\t' || (x)=='\n' || (x)=='\r')
221
 
222
 
222
/*ou
223
/*ou
223
inline int myisdigit(char x) { return x>='0' && x<='9'; }
224
inline int myisdigit(char x) { return x>='0' && x<='9'; }
224
*/
225
*/
-
 
226
 
-
 
227
/* from libwims.c */
-
 
228
void error(char *msg);
-
 
229
 
225
 
230
 
226
#ifndef isfinite
231
#ifndef isfinite
227
# define isfinite(x) (finite(x))
232
# define isfinite(x) (finite(x))
228
#endif
233
#endif