summaryrefslogtreecommitdiff
path: root/src/unistd
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2019-02-09 21:27:42 -0500
committerJakob Kaivo <jkk@ung.org>2019-02-09 21:27:42 -0500
commit6d4678bc82d4a80499123b33a971d2e2c0becb5f (patch)
treea6a34d7d69c4022e33879a6da95d42cd0dc552c4 /src/unistd
parent44a30f8b1debb2f6d3b4d505d4e922455482f59e (diff)
remove unnecessary initialization
Diffstat (limited to 'src/unistd')
-rw-r--r--src/unistd/optopt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unistd/optopt.c b/src/unistd/optopt.c
index 673316d5..7ab8471c 100644
--- a/src/unistd/optopt.c
+++ b/src/unistd/optopt.c
@@ -1,5 +1,5 @@
#include <unistd.h>
-int optopt = 0;
+int optopt;
/*
POSIX(2)
*/