diff options
author | Zack Weinberg <zackw@panix.com> | 2017-06-10 13:08:36 -0400 |
---|---|---|
committer | Zack Weinberg <zackw@panix.com> | 2017-06-10 13:08:36 -0400 |
commit | 8458956a6219b6dbd97b0e9e97caf742f3c6342e (patch) | |
tree | 2ccff59a3bfa74676c1dfb1ed7b5dda136df90ea /stdlib | |
parent | cdfbe5037f2f67bf5f560b73732b69d0fabe2314 (diff) | |
download | glibc-8458956a6219b6dbd97b0e9e97caf742f3c6342e.zip glibc-8458956a6219b6dbd97b0e9e97caf742f3c6342e.tar.gz glibc-8458956a6219b6dbd97b0e9e97caf742f3c6342e.tar.bz2 |
Correct an outdated comment in stdlib/errno.h.
Diffstat (limited to 'stdlib')
-rw-r--r-- | stdlib/errno.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/errno.h b/stdlib/errno.h index 65f2f45..c42514b 100644 --- a/stdlib/errno.h +++ b/stdlib/errno.h @@ -50,7 +50,7 @@ extern int errno; /* The full and simple forms of the name with which the program was invoked. These variables are set up automatically at startup based on - the value of ARGV[0] (this works only if you use GNU ld). */ + the value of argv[0]. */ extern char *program_invocation_name, *program_invocation_short_name; #endif /* __USE_GNU */ #endif /* _ERRNO_H */ |