aboutsummaryrefslogtreecommitdiff
path: root/test/example.c
diff options
context:
space:
mode:
authorMark Adler <madler@alumni.caltech.edu>2024-02-09 16:42:36 -0800
committerMark Adler <madler@alumni.caltech.edu>2024-02-09 20:11:54 -0800
commitfd5fe8b17e27ab92dcc70ed4974915b8dbe2a553 (patch)
tree880202f45d75dbdbde30125ef59c320e3b909349 /test/example.c
parentceac32f156c4d39bf991e1163223b8d910a258d3 (diff)
downloadzlib-fd5fe8b17e27ab92dcc70ed4974915b8dbe2a553.tar.gz
zlib-fd5fe8b17e27ab92dcc70ed4974915b8dbe2a553.tar.bz2
zlib-fd5fe8b17e27ab92dcc70ed4974915b8dbe2a553.zip
Further address Microsoft deprecation warnings.
Diffstat (limited to 'test/example.c')
-rw-r--r--test/example.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/example.c b/test/example.c
index e9cb806..d22e5f4 100644
--- a/test/example.c
+++ b/test/example.c
@@ -5,6 +5,10 @@
5 5
6/* @(#) $Id$ */ 6/* @(#) $Id$ */
7 7
8#if defined(_WIN32) && !defined(_CRT_SECURE_NO_WARNINGS)
9# define _CRT_SECURE_NO_WARNINGS
10#endif
11
8#include "zlib.h" 12#include "zlib.h"
9#include <stdio.h> 13#include <stdio.h>
10 14