fix longstanding missing static in mq_notify (namespace pollution)
authorRich Felker <dalias@aerifal.cx>
Sun, 29 Apr 2012 04:20:53 +0000 (00:20 -0400)
committerRich Felker <dalias@aerifal.cx>
Sun, 29 Apr 2012 04:20:53 +0000 (00:20 -0400)
src/mq/mq_notify.c

index 3f8661e..221591c 100644 (file)
@@ -12,7 +12,7 @@ struct args {
        const struct sigevent *sev;
 };
 
-void *start(void *p)
+static void *start(void *p)
 {
        struct args *args = p;
        char buf[32];