| version 1.1, Fri Feb 11 16:30:47 1994 UTC | version 1.2, Tue Nov 29 16:22:49 1994 UTC | ||
|---|---|---|---|
|
|
||
| /* OS dependences */ | /* OS dependences */ | ||
| #define SEEK_SET 0 | #define SEEK_SET 0 | ||
| #define memmove(a,b,c) ({ if((long)(a)<(long)(b)) memcpy(a,b,c); \ | |||
| else \ | |||
| { int i; \ | |||
| for(i=(c)-1; i>=0; i--) \ | |||
| (char*)a[i]=(char*)b[i]; \ | |||
| } \ | |||
| }) | |||
| #define strtoul(a,b,c) strtol(a,b,c) | |||
|
||||||||
|
CVS Admin Powered by ViewCVS 1.0-dev |
ViewCVS and CVS Help |