Skip to content
Snippets Groups Projects
Commit 3f626576 authored by deuce's avatar deuce
Browse files

Don't include unix-specific headers in Win32 version.

parent 3d7f4bdc
No related branches found
No related tags found
No related merge requests found
......@@ -37,15 +37,17 @@
#include "sbbs.h"
#include "conwrap.h" /* this has to go BEFORE curses.h so getkey() can be macroed around */
#include <curses.h>
#include <sys/types.h>
#include <time.h>
#include <sys/time.h>
#ifdef __QNX__
#include <string.h>
#endif
#include <stdio.h>
#ifdef __unix__
#include <unistd.h>
#include <curses.h>
#include <sys/time.h>
#endif
#include "genwrap.h"
#include "uifc.h"
#include "sbbsdefs.h"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment