summaryrefslogtreecommitdiff
path: root/test/test_arrays.h
diff options
context:
space:
mode:
authordron <dron>2004-09-15 13:00:02 +0000
committerdron <dron>2004-09-15 13:00:02 +0000
commita39203d3436a72e139a062f858fea48dbfc73f7f (patch)
tree9201169569c745979e0ad9af3f5576b008b8bba5 /test/test_arrays.h
parent06ad6486f1d07be0f78ebe1a6946cfa8ac57a58e (diff)
downloadlibtiff-a39203d3436a72e139a062f858fea48dbfc73f7f.tar.gz
*** empty log message ***
Diffstat (limited to 'test/test_arrays.h')
-rw-r--r--test/test_arrays.h19
1 files changed, 11 insertions, 8 deletions
diff --git a/test/test_arrays.h b/test/test_arrays.h
index 7b2d71a3..8667ffa9 100644
--- a/test/test_arrays.h
+++ b/test/test_arrays.h
@@ -1,4 +1,4 @@
-/* $Id: test_arrays.h,v 1.1 2004-09-14 15:01:16 dron Exp $ */
+/* $Id: test_arrays.h,v 1.2 2004-09-15 13:00:02 dron Exp $ */
/*
* Copyright (c) 2004, Andrey Kiselev <dron@remotesensing.org>
@@ -32,28 +32,31 @@
#ifndef _TEST_ARRAYS_
#define _TEST_ARRAYS_
-#include "tiffio.h"
+#include <stddef.h>
#define XSIZE 37
#define YSIZE 23
extern const unsigned char byte_array1[];
-extern const tsize_t byte_array1_size;
+extern const size_t byte_array1_size;
extern const unsigned char byte_array2[];
-extern const tsize_t byte_array2_size;
+extern const size_t byte_array2_size;
+
+extern const unsigned char byte_array3[];
+extern const size_t byte_array3_size;
extern const float array_float1[];
-extern const tsize_t array_float1_size;
+extern const size_t array_float1_size;
extern const float array_float2[];
-extern const tsize_t array_float2_size;
+extern const size_t array_float2_size;
extern const double array_double1[];
-extern const tsize_t array_double1_size;
+extern const size_t array_double1_size;
extern const double array_double2[];
-extern const tsize_t array_double2_size;
+extern const size_t array_double2_size;
#endif /* _TEST_ARRAYS_ */