2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-31 14:25:41 +00:00

strncasecmp takes *three* arguments...

This commit is contained in:
Ted Lemon
1996-09-02 21:18:00 +00:00
parent cb219f0d41
commit 185419ca8a
2 changed files with 2 additions and 2 deletions

View File

@@ -82,7 +82,7 @@ typedef signed short int16_t;
typedef signed long int32_t;
#define strcasecmp( s1, s2 ) stricmp( s1, s2 )
#define strncasecmp( s1, s2 ) strnicmp( s1, s2 )
#define strncasecmp( s1, s2, n ) strnicmp( s1, s2, n )
#define vsnprintf( buf, size, fmt, list ) vsprintf( buf, fbuf, list )
#define random() rand()

View File

@@ -82,7 +82,7 @@ typedef signed short int16_t;
typedef signed long int32_t;
#define strcasecmp( s1, s2 ) stricmp( s1, s2 )
#define strncasecmp( s1, s2 ) strnicmp( s1, s2 )
#define strncasecmp( s1, s2, n ) strnicmp( s1, s2, n )
#define vsnprintf( buf, size, fmt, list ) vsprintf( buf, fbuf, list )
#define random() rand()