diff options
author | Jakob Kaivo <jkk@ung.org> | 2019-02-09 21:27:42 -0500 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2019-02-09 21:27:42 -0500 |
commit | 6d4678bc82d4a80499123b33a971d2e2c0becb5f (patch) | |
tree | a6a34d7d69c4022e33879a6da95d42cd0dc552c4 /src/unistd | |
parent | 44a30f8b1debb2f6d3b4d505d4e922455482f59e (diff) |
remove unnecessary initialization
Diffstat (limited to 'src/unistd')
-rw-r--r-- | src/unistd/optopt.c | 2 |
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) */ |