Sync usage with man page.
[netbsd-mini2440.git] / regress / lib / libc / ssp / fgets / fgets.c
blobda1fc5675266c9a4f58cc2b0e31401691fe021fe
1 #include <stdio.h>
2 #include <stdlib.h>
4 int
5 main(int argc, char *argv[])
7 char b[10];
8 int len = atoi(argv[1]);
9 (void)fgets(b, len, stdin);
10 (void)printf("%s\n", b);
11 return 0;