diff options
author | Joseph Myers <joseph@codesourcery.com> | 2012-02-17 01:13:15 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2012-02-17 01:13:15 +0000 |
commit | 35c47e37b99f20d198a5bfaae9f39b1cfb216d80 (patch) | |
tree | 5d56b31336ffbf62d678854b3c48d774b4773567 /manual/examples/argp-ex1.c | |
parent | 0a0a5bd4f16023fc35abdca5f7dc2784b3a482d5 (diff) | |
download | glibc-35c47e37b99f20d198a5bfaae9f39b1cfb216d80.tar.gz glibc-35c47e37b99f20d198a5bfaae9f39b1cfb216d80.tar.xz glibc-35c47e37b99f20d198a5bfaae9f39b1cfb216d80.zip |
Include <stdlib.h> in argp examples.
Diffstat (limited to 'manual/examples/argp-ex1.c')
-rw-r--r-- | manual/examples/argp-ex1.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/manual/examples/argp-ex1.c b/manual/examples/argp-ex1.c index 50ac0ed978..7bb5f2241c 100644 --- a/manual/examples/argp-ex1.c +++ b/manual/examples/argp-ex1.c @@ -5,6 +5,7 @@ messages and exit when there are any arguments, and print a (rather pointless) messages for --help. */ +#include <stdlib.h> #include <argp.h> int main (int argc, char **argv) |