summaryrefslogtreecommitdiff
path: root/vcnet/config.h
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2018-10-16 15:31:09 -0400
committerMichael R Sweet <michael.r.sweet@gmail.com>2018-10-16 15:31:09 -0400
commitd3a97696d785af4fd1c00254b3b26150d915f921 (patch)
tree145568dee6dde76228c30f092f1013c97c7855ce /vcnet/config.h
parentd00c3f2678e99a019fa8973500747b42a6976586 (diff)
Fix build issues, add missing files.
Diffstat (limited to 'vcnet/config.h')
-rw-r--r--vcnet/config.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/vcnet/config.h b/vcnet/config.h
index bf7a4cd72..d7b62d65e 100644
--- a/vcnet/config.h
+++ b/vcnet/config.h
@@ -1,7 +1,7 @@
/*
* Configuration file for CUPS on Windows.
*
- * Copyright 2007-2017 by Apple Inc.
+ * Copyright 2007-2018 by Apple Inc.
* Copyright 1997-2007 by Easy Software Products.
*
* Licensed under Apache License v2.0. See the file "LICENSE" for more information.
@@ -48,12 +48,12 @@
/*
- * Map the POSIX strcasecmp() and strncasecmp() functions to the Win32 stricmp()
- * and strnicmp() functions...
+ * Map the POSIX strcasecmp() and strncasecmp() functions to the Win32 _stricmp()
+ * and _strnicmp() functions...
*/
-#define strcasecmp stricmp
-#define strncasecmp strnicmp
+#define strcasecmp _stricmp
+#define strncasecmp _strnicmp
/*