changeset 1803:3a16afafc2ee

[project @ 1996-01-29 06:41:12 by jwe]
author jwe
date Mon, 29 Jan 1996 06:41:42 +0000
parents 8173b1fa052d
children 793ce4135de7
files src/dirfns.cc src/dirfns.h
diffstat 2 files changed, 2 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/src/dirfns.cc	Mon Jan 29 06:18:29 1996 +0000
+++ b/src/dirfns.cc	Mon Jan 29 06:41:42 1996 +0000
@@ -125,7 +125,7 @@
 
 // Return 1 if STRING contains an absolute pathname, else 0.
 
-int
+static int
 absolute_pathname (const string& s)
 {
   if (s.empty ())
@@ -151,7 +151,7 @@
 // it contains any slashes.  This is used to decide whether or not to
 // look up through $PATH.
 
-int
+static int
 absolute_program (const string& s)
 {
   return (s.find ('/') != NPOS);
--- a/src/dirfns.h	Mon Jan 29 06:18:29 1996 +0000
+++ b/src/dirfns.h	Mon Jan 29 06:41:42 1996 +0000
@@ -29,8 +29,6 @@
 #include <string>
 
 extern string polite_directory_format (const string&);
-extern int absolute_pathname (const string&);
-extern int absolute_program (const string&);
 extern string base_pathname (const string&);
 extern string make_absolute (const string&, const string&);
 extern string get_working_directory (const string&);