change getopt.h to stdio.h in fspscan.c so that fspscan can compile on

OS without gnu getopt e.g. AIX
This commit is contained in:
hoaxter 2005-01-16 14:54:32 +00:00
parent ba21b3dad1
commit 4556dcfdc6
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Version NEXT
use getopt from stdio.h instead of getopt.h in fspscan.c
fspscan now compiles on AIX and other OS without glibc (hoaxter)
Version 2.8.1b23 - 14 Jan 2005
use srandomdev for seeding of client seq. number generator
make dirlister smarter - save one RTT per each directory listings

View File

@ -31,7 +31,7 @@ suite. Don't blame me for the code, i have not touched it.
#include "fspscan.h"
#include <netdb.h>
#include <errno.h>
#include <getopt.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>