diff options
author | dmaclach@chromium.org <dmaclach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-10 15:30:03 +0000 |
---|---|---|
committer | dmaclach@chromium.org <dmaclach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-10 15:30:03 +0000 |
commit | c99b20dbbb54df7b793ded1d66042c059c0fe715 (patch) | |
tree | b590fe179d1663af97e466442895d6065d8c8696 /remoting/tools | |
parent | 1c26217d647d823c1ce3355bc619e0ef7a68822b (diff) | |
download | chromium_src-c99b20dbbb54df7b793ded1d66042c059c0fe715.zip chromium_src-c99b20dbbb54df7b793ded1d66042c059c0fe715.tar.gz chromium_src-c99b20dbbb54df7b793ded1d66042c059c0fe715.tar.bz2 |
Fix up warning due to missing declarations.
TEST=none
BUG=none
Review URL: http://codereview.chromium.org/2735006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49400 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/tools')
-rw-r--r-- | remoting/tools/client_webserver/main.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/remoting/tools/client_webserver/main.c b/remoting/tools/client_webserver/main.c index 1182ab0..3cc5c2b 100644 --- a/remoting/tools/client_webserver/main.c +++ b/remoting/tools/client_webserver/main.c @@ -12,12 +12,18 @@ // This is useful for testing the Chromoting plugin while we wait for // updated mimetype support to be added to Chrome. +#include "build/build_config.h" + #include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/wait.h> #include <netinet/in.h> +#if defined (OS_POSIX) +#include <unistd.h> +#endif // OS_POSIX + #define PORT 8080 void error(const char *msg) { |