summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libutil/libutil.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libutil/libutil.h b/libutil/libutil.h
index 3db5263..50c7c66 100644
--- a/libutil/libutil.h
+++ b/libutil/libutil.h
@@ -18,7 +18,7 @@
* 5. Modifications may be freely made to this file providing the above
* conditions are met.
*
- * $Id: libutil.h,v 1.6 1997/03/31 22:47:53 brian Exp $
+ * $Id: libutil.h,v 1.7 1997/05/10 18:55:37 davidn Exp $
*/
#ifndef _LIBUTIL_H_
@@ -41,9 +41,9 @@ int openpty __P((int *amaster, int *aslave, char *name,
struct termios *termp, struct winsize *winp));
int forkpty __P((int *amaster, char *name,
struct termios *termp, struct winsize *winp));
-char *uu_lockerr __P((int uu_lockresult));
-int uu_lock __P((char *ttyname));
-int uu_unlock __P((char *ttyname));
+const char *uu_lockerr __P((int uu_lockresult));
+int uu_lock __P((const char *ttyname));
+int uu_unlock __P((const char *ttyname));
int _secure_path __P((const char *path, uid_t uid, gid_t gid));
__END_DECLS