summaryrefslogtreecommitdiff
path: root/src/manp.h
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2001-09-18 02:48:39 +0000
committerColin Watson <cjwatson@debian.org>2001-09-18 02:48:39 +0000
commit30129759d683626ccf4fd450dbe989efcb660518 (patch)
tree15bf6ac1c53fe1e950d0dea219d852c7afed7269 /src/manp.h
parent452a80054f90fa6b8116b0c8d634498741370d28 (diff)
A week's worth of hotel room hacking. Highlights:
* man sorts names returned from filesystem/database lookups. * man checks the filesystem before checking the database. * Several const-related cleanups. * configure works with ash as /bin/sh. * Prevent lexgrog from sometimes accidentally eating the next line of input when it sees '.' on a line by itself.
Diffstat (limited to 'src/manp.h')
-rw-r--r--src/manp.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/manp.h b/src/manp.h
index eee7b32d..f08c86b2 100644
--- a/src/manp.h
+++ b/src/manp.h
@@ -1,9 +1,8 @@
/* manp.c */
extern char *cat_manpath (char *manp);
extern char *add_nls_manpath (char *manpathlist, const char *locale);
-extern char *add_system_manpath (char *systems, char *manpathlist);
-extern char *manpath (char *systems);
-extern void create_pathlist (char *manp, char **mp);
+extern char *manpath (const char *systems);
+extern void create_pathlist (const char *manp, char **mp);
extern char *get_mandb_manpath (void);
extern char *get_catpath (char *name, int cattype);
extern int is_global_mandir (const char *dir);