Annotation of embedaddon/php/win32/param.h, revision 1.1.1.1

1.1       misho       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))

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>