From: solar Date: Wed, 12 Jan 2005 17:24:55 +0000 (+0000) Subject: Forgot the header guard on string.h. Bumped release date in Readme.txt. X-Git-Tag: v0.2 X-Git-Url: https://pd.if.org/git/?p=pdclib;a=commitdiff_plain;h=refs%2Ftags%2Fv0.2 Forgot the header guard on string.h. Bumped release date in Readme.txt. --- diff --git a/Readme.txt b/Readme.txt index 2c4c66d..303bb0b 100644 --- a/Readme.txt +++ b/Readme.txt @@ -140,7 +140,7 @@ package, to leave to the overlay, or devise some parameterized macro magic as for / . Not thoroughly tested, but I had to make the 0.1 release sometime so why not now. -v0.2 - 2005-01-11 +v0.2 - 2005-01-12 Adds implementations for (excluding strerror()), INTN_C() / UINTN_C() macros, and some improvements in the internal headers. Test drivers still missing, but added warnings about that. diff --git a/string.h b/string.h index 08fcb96..c63bab8 100755 --- a/string.h +++ b/string.h @@ -8,6 +8,9 @@ Permission is granted to use, modify, and / or redistribute at will. */ +#ifndef _PDCLIB_STRING_H +#define _PDCLIB_STRING_H _PDCLIB_STRING_H + #ifndef _PDCLIB_AUX_H #define _PDCLIB_AUX_H _PDCLIB_AUX_H #include <_PDCLIB_aux.h> @@ -191,3 +194,4 @@ char * strerror( int errnum ); */ size_t strlen( const char * s ); +#endif