X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Ffindprog.h;h=8d1a5afb597ead64b465cf153710cbb4d22a0cee;hb=665a8a0fca396d67dfed85580a48178df8b4a60e;hp=81a95b6dc49c1b20151ba0c4301d4fe8d2e55dda;hpb=3964b40991c1676eb0a982a1e93d57224663cc17;p=gnulib.git diff --git a/lib/findprog.h b/lib/findprog.h index 81a95b6dc..8d1a5afb5 100644 --- a/lib/findprog.h +++ b/lib/findprog.h @@ -2,10 +2,10 @@ Copyright (C) 2001-2003 Free Software Foundation, Inc. Written by Bruno Haible , 2001. - This program is free software; you can redistribute it and/or modify + 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 - the Free Software Foundation; either version 2, or (at your option) - any later version. + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -13,8 +13,13 @@ GNU General Public License for more details. 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. */ + along with this program. If not, see . */ + + +#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 +30,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