From e048aa0e7e378e4e0d0b54fb03ede7d1b217b985 Mon Sep 17 00:00:00 2001 From: Jim Warner Date: Tue, 6 Dec 2011 09:19:11 -0600 Subject: [PATCH] library: eliminate one redundant 'extern' qualifier --- proc/readproc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proc/readproc.c b/proc/readproc.c index dba2597e..57870ef3 100644 --- a/proc/readproc.c +++ b/proc/readproc.c @@ -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];