Avoid mempcpy in the regex code, as the string.h mempcpy stuff
[gnulib.git] / lib / findprog.h
index 81a95b6..237402a 100644 (file)
 
    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software Foundation,
-   Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
+   Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
+
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 
 /* Look up a program in the PATH.
    Attempt to determine the pathname that would be called by execlp/execvp
@@ -25,3 +31,8 @@
    execl/execv on the returned pathname.
    The returned string is freshly malloc()ed if it is != PROGNAME.  */
 extern const char *find_in_path (const char *progname);
+
+
+#ifdef __cplusplus
+}
+#endif