mirror of
https://github.com/php/php-src.git
synced 2024-11-25 19:05:31 +08:00
32 lines
1.1 KiB
C
32 lines
1.1 KiB
C
|
|
/*****************************************************************************
|
|
* *
|
|
* sys/param.c *
|
|
* *
|
|
* Freely redistributable and modifiable. Use at your own risk. *
|
|
* *
|
|
* Copyright 1994 The Downhill Project *
|
|
* *
|
|
*****************************************************************************/
|
|
#ifndef PHP_WIN32_PARAM_H
|
|
#define PHP_WIN32_PARAM_H
|
|
|
|
#ifndef MAXPATHLEN
|
|
#include "win32/ioutil.h"
|
|
#define MAXPATHLEN PHP_WIN32_IOUTIL_MAXPATHLEN
|
|
#endif
|
|
#define MAXHOSTNAMELEN 64
|
|
#define howmany(x,y) (((x)+((y)-1))/(y))
|
|
#define roundup(x,y) ((((x)+((y)-1))/(y))*(y))
|
|
|
|
#endif
|
|
|
|
/*
|
|
* Local variables:
|
|
* tab-width: 4
|
|
* c-basic-offset: 4
|
|
* End:
|
|
* vim600: sw=4 ts=4 fdm=marker
|
|
* vim<600: sw=4 ts=4
|
|
*/
|