diff options
Diffstat (limited to 'posix')
-rw-r--r-- | posix/getopt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/posix/getopt.c b/posix/getopt.c index 841392e5bb..d30530f939 100644 --- a/posix/getopt.c +++ b/posix/getopt.c @@ -585,7 +585,7 @@ _getopt_internal_r (int argc, char *const *argv, const char *optstring, char *buf = NULL; size_t buflen = 0; - FILE *fp = open_memstream (&buf, &buflen); + FILE *fp = __open_memstream (&buf, &buflen); if (fp != NULL) { fprintf (fp, |