X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Ffindprog.h;h=237402a0beadcb33005dc4bd429e4a8715ba4ec2;hb=7a64ae7c519b666be092768c4d65080e006a4408;hp=81a95b6dc49c1b20151ba0c4301d4fe8d2e55dda;hpb=3964b40991c1676eb0a982a1e93d57224663cc17;p=gnulib.git diff --git a/lib/findprog.h b/lib/findprog.h index 81a95b6dc..237402a0b 100644 --- a/lib/findprog.h +++ b/lib/findprog.h @@ -14,7 +14,13 @@ 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