]> granicus.if.org Git - procps-ng/commitdiff
library: eliminate one redundant 'extern' qualifier
authorJim Warner <james.warner@comcast.net>
Tue, 6 Dec 2011 15:19:11 +0000 (09:19 -0600)
committerCraig Small <csmall@enc.com.au>
Sun, 11 Dec 2011 11:27:19 +0000 (22:27 +1100)
proc/readproc.c

index dba2597ecaf55f4d56295f928d84fd720117612e..57870ef3ce19f804f98fc3919164c2d9447fc800 100644 (file)
@@ -1096,7 +1096,7 @@ out:
 // the next unique process or task available.  If no more are available,
 // return a null pointer (boolean false).  Use the passed buffer instead
 // of allocating space if it is non-NULL.
-extern proc_t* readeither (PROCTAB *restrict const PT, proc_t *restrict x) {
+proc_t* readeither (PROCTAB *restrict const PT, proc_t *restrict x) {
     static proc_t skel_p;    // skeleton proc_t, only uses tid + tgid
     static proc_t *new_p;    // for process/task transitions
     char path[PROCPATHLEN];