aboutsummaryrefslogtreecommitdiffstats
path: root/hashcmd.h
diff options
context:
space:
mode:
authorJari Aalto <jari.aalto@cante.net>2000-03-17 21:46:59 +0000
committerJari Aalto <jari.aalto@cante.net>2009-09-12 16:46:53 +0000
commitbb70624e964126b7ac4ff085ba163a9c35ffa18f (patch)
treeba2dd4add13ada94b1899c6d4aca80195b80b74b /hashcmd.h
parentb72432fdcc59300c6fe7c9d6c8a31ad3447933f5 (diff)
downloadandroid_external_bash-bb70624e964126b7ac4ff085ba163a9c35ffa18f.tar.gz
android_external_bash-bb70624e964126b7ac4ff085ba163a9c35ffa18f.tar.bz2
android_external_bash-bb70624e964126b7ac4ff085ba163a9c35ffa18f.zip
Imported from ../bash-2.04.tar.gz.
Diffstat (limited to 'hashcmd.h')
-rw-r--r--hashcmd.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/hashcmd.h b/hashcmd.h
index aacd8e7..54692ea 100644
--- a/hashcmd.h
+++ b/hashcmd.h
@@ -16,8 +16,9 @@
You should have received a copy of the GNU General Public License along
with Bash; see the file COPYING. If not, write to the Free Software
- Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
+ Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. */
+#include "stdc.h"
#include "hashlib.h"
#define FILENAME_HASH_BUCKETS 107
@@ -34,8 +35,8 @@ typedef struct {
#define pathdata(x) ((PATH_DATA *)(x)->data)
-extern void initialize_filename_hashing ();
-extern void flush_hashed_filenames ();
-extern void remove_hashed_filename ();
-extern void remember_filename ();
-extern char *find_hashed_filename ();
+extern void initialize_filename_hashing __P((void));
+extern void flush_hashed_filenames __P((void));
+extern void remove_hashed_filename __P((char *));
+extern void remember_filename __P((char *, char *, int, int));
+extern char *find_hashed_filename __P((char *));