fix off-by-one error in checks for implementation-internal signal numbers
[oweals/musl.git] / src / misc / getopt.c
index 35880a090719e8f3913bbcd63c0238214490826a..f1a1639c56da1ae9140cde36d486a928daf872fd 100644 (file)
@@ -70,3 +70,5 @@ int getopt(int argc, char * const argv[], const char *optstring)
        }
        return c;
 }
+
+weak_alias(getopt, __posix_getopt);