xref: /PHP-5.5/win32/param.h (revision aceaabce)
1 
2 /*****************************************************************************
3  *                                                                           *
4  * sys/param.c                                                               *
5  *                                                                           *
6  * Freely redistributable and modifiable.  Use at your own risk.             *
7  *                                                                           *
8  * Copyright 1994 The Downhill Project                                       *
9  *                                                                           *
10  *****************************************************************************/
11 #ifndef MAXPATHLEN
12 #define MAXPATHLEN     _MAX_PATH
13 #endif
14 #define MAXHOSTNAMELEN 64
15 #define howmany(x,y)   (((x)+((y)-1))/(y))
16 #define roundup(x,y)   ((((x)+((y)-1))/(y))*(y))
17