summaryrefslogtreecommitdiff
path: root/vcnet/config.h
diff options
context:
space:
mode:
authorMichael R Sweet <msweet@msweet.org>2021-02-01 15:29:04 -0500
committerMichael R Sweet <msweet@msweet.org>2021-02-01 15:48:28 -0500
commit5e5ff4a6f1796ac396bbadda6e48c45bb7b4f067 (patch)
tree1e837e1d7c886eb3fcb6410a0dae32445620c631 /vcnet/config.h
parent2e79749d07dec4ce3a01dfe7f997d428d0b215bd (diff)
Update config header files.
Diffstat (limited to 'vcnet/config.h')
-rw-r--r--vcnet/config.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/vcnet/config.h b/vcnet/config.h
index 05d36dcfc..165a28d61 100644
--- a/vcnet/config.h
+++ b/vcnet/config.h
@@ -1,6 +1,7 @@
/*
* Configuration file for CUPS on Windows.
*
+ * Copyright © 2021 by Michael R Sweet
* Copyright © 2007-2019 by Apple Inc.
* Copyright © 1997-2007 by Easy Software Products.
*
@@ -41,8 +42,10 @@
#define open _open
#define read _read
#define rmdir _rmdir
+#define snprintf _snprintf
#define strdup _strdup
#define unlink _unlink
+#define vsnprintf _vsnprintf
#define write _write
@@ -97,8 +100,8 @@ typedef unsigned long useconds_t;
* Version of software...
*/
-#define CUPS_SVERSION "CUPS v2.3.3op1"
-#define CUPS_MINIMAL "CUPS/2.3.3op1"
+#define CUPS_SVERSION "CUPS v2.3.3op2"
+#define CUPS_MINIMAL "CUPS/2.3.3op2"
/*
@@ -345,9 +348,8 @@ typedef unsigned long useconds_t;
* Do we have the (v)snprintf() functions?
*/
-/* Windows snprintf/vsnprintf are non-conforming */
-/* #undef HAVE_SNPRINTF */
-/* #undef HAVE_VSNPRINTF */
+#define HAVE_SNPRINTF 1
+#define HAVE_VSNPRINTF 1
/*