mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
PHP 4.0
This commit is contained in:
parent
d94f3e22ae
commit
aceaabceff
189 changed files with 43488 additions and 0 deletions
16
win32/param.h
Normal file
16
win32/param.h
Normal 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))
|
Loading…
Add table
Add a link
Reference in a new issue