This commit is contained in:
Zeev Suraski 1999-04-07 21:05:13 +00:00
parent d94f3e22ae
commit aceaabceff
189 changed files with 43488 additions and 0 deletions

16
win32/param.h Normal file
View file

@ -0,0 +1,16 @@
/*****************************************************************************
* *
* sys/param.c *
* *
* Freely redistributable and modifiable. Use at your own risk. *
* *
* Copyright 1994 The Downhill Project *
* *
*****************************************************************************/
#ifndef MAXPATHLEN
#define MAXPATHLEN _MAX_PATH
#endif
#define MAXHOSTNAMELEN 64
#define howmany(x,y) (((x)+((y)-1))/(y))
#define roundup(x,y) ((((x)+((y)-1))/(y))*(y))