artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8e76509
)
Unbreak tree with 'char *' -> 'const char *' for
author
krw
<krw@openbsd.org>
Sun, 16 Sep 2018 17:37:11 +0000
(17:37 +0000)
committer
krw
<krw@openbsd.org>
Sun, 16 Sep 2018 17:37:11 +0000
(17:37 +0000)
userid().
usr.bin/top/top.h
patch
|
blob
|
history
diff --git
a/usr.bin/top/top.h
b/usr.bin/top/top.h
index
e54474f
..
f19952e
100644
(file)
--- a/
usr.bin/top/top.h
+++ b/
usr.bin/top/top.h
@@
-1,4
+1,4
@@
-/* $OpenBSD: top.h,v 1.1
6 2018/09/13 15:23:32 millert Exp $
*/
+/* $OpenBSD: top.h,v 1.1
7 2018/09/16 17:37:11 krw Exp $
*/
/*
* Top users/processes display for Unix
@@
-79,4
+79,4
@@
extern void quit(int);
/* username.c */
extern const char *username(uid_t);
-extern uid_t userid(char *);
+extern uid_t userid(c
onst c
har *);