mirror of
https://github.com/nmap/nmap.git
synced 2026-08-04 06:40:48 +00:00
Includes for Windows.
This commit is contained in:
parent
d75d74b015
commit
63cd5edfb7
1 changed files with 11 additions and 4 deletions
|
|
@ -1,18 +1,25 @@
|
|||
#include "nbase.h"
|
||||
|
||||
#include <ctype.h>
|
||||
#include <dirent.h>
|
||||
#include <errno.h>
|
||||
#include <getopt.h>
|
||||
#include <pwd.h>
|
||||
#include <stdarg.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <sys/stat.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include "nbase.h"
|
||||
|
||||
#ifndef WIN32
|
||||
#include <dirent.h>
|
||||
#include <getopt.h>
|
||||
#include <pwd.h>
|
||||
#include <unistd.h>
|
||||
#include "config.h"
|
||||
#else
|
||||
#include <shlobj.h>
|
||||
#include "win_config.h"
|
||||
#endif
|
||||
|
||||
/* See the file tools/examples/minimal_client.c in the Subversion source
|
||||
directory for an example of using the svn_client API. */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue