diff options
Diffstat (limited to 'source4/lib/replace')
-rw-r--r-- | source4/lib/replace/README | 4 | ||||
-rw-r--r-- | source4/lib/replace/replace.h | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/source4/lib/replace/README b/source4/lib/replace/README index 45c8bccf13..1e804d50e1 100644 --- a/source4/lib/replace/README +++ b/source4/lib/replace/README @@ -56,6 +56,10 @@ uint_t uint{8,16,32,64}_t int{8,16,32,64}_t +Constants: +PATH_NAME_MAX +UINT16_MAX + Prerequisites: memset (for bzero) syslog (for vsyslog) diff --git a/source4/lib/replace/replace.h b/source4/lib/replace/replace.h index e3eef56eeb..fda494a444 100644 --- a/source4/lib/replace/replace.h +++ b/source4/lib/replace/replace.h @@ -166,4 +166,8 @@ int rep_mkstemp(char *temp); #define HOST_NAME_MAX 64 #endif +#ifndef UINT16_MAX +#define UINT16_MAX 65535 +#endif + #endif |