diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2003-07-31 23:40:16 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2003-07-31 23:40:16 +0000 |
commit | 8a6a94db0af74174f9d64cfcfc9939450b1ba31b (patch) | |
tree | 269300f723f2d38afd3c50ea59d84fab51eaa9f3 /src | |
parent | 6aaa863432967b99d0e2c87116b4ec844b90436f (diff) | |
download | tinyproxy-8a6a94db0af74174f9d64cfcfc9939450b1ba31b.tar.gz tinyproxy-8a6a94db0af74174f9d64cfcfc9939450b1ba31b.zip |
# Fixed a preprocessor test (misspelled __cplusplus)
Diffstat (limited to '')
-rw-r--r-- | src/vector.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vector.h b/src/vector.h index c125e85..3f2404b 100644 --- a/src/vector.h +++ b/src/vector.h @@ -1,4 +1,4 @@ -/* $Id: vector.h,v 1.4 2003-05-30 16:21:47 rjkaes Exp $ +/* $Id: vector.h,v 1.5 2003-07-31 23:40:16 rjkaes Exp $ * * A vector implementation. The vector can be of an arbritrary length, and * the data for each entry is an lump of data (the size is stored in the @@ -80,7 +80,7 @@ extern void* vector_getentry(vector_t vector, size_t pos, size_t* size); */ extern ssize_t vector_length(vector_t vector); -#if defined(_cplusplus) +#if defined(__cplusplus) } #endif /* C++ */ |