X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fstrstr.h;h=f244b9644548755d25897bec314d18d1c81c50ea;hb=9db47123ce74651bda88707c3f67441622aae399;hp=e424b8340f824bad18f6059d8dbf7507c0a7269d;hpb=d79ef04766e844e5eb34513366b2e3be842db6ee;p=gnulib.git diff --git a/lib/strstr.h b/lib/strstr.h index e424b8340..f244b9644 100644 --- a/lib/strstr.h +++ b/lib/strstr.h @@ -1,5 +1,5 @@ /* Searching in a string. - Copyright (C) 2001, 2002 Free Software Foundation, Inc. + Copyright (C) 2001-2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -22,7 +22,15 @@ #else +#ifdef __cplusplus +extern "C" { +#endif + /* Find the first occurrence of NEEDLE in HAYSTACK. */ extern char *strstr (const char *haystack, const char *needle); +#ifdef __cplusplus +} +#endif + #endif