Remove all WIN32 ifdefs (unifdef -UWIN32)

Just use cygwin.

This looks like it wasn't enough to do anything useful, and I don't
think anyone cares about supporting win32 the hard way.
This commit is contained in:
dequis 2015-12-09 15:20:59 -03:00
commit 96766b7f05
10 changed files with 0 additions and 68 deletions

View file

@ -83,7 +83,6 @@ static void sig_reload_config(int signo)
static void read_settings(void)
{
#ifndef WIN32
static int signals[] = {
SIGINT, SIGQUIT, SIGTERM,
SIGALRM, SIGUSR1, SIGUSR2
@ -124,7 +123,6 @@ static void read_settings(void)
settings_set_bool("override_coredump_limit", FALSE);
}
#endif
#endif
}
static void sig_gui_dialog(const char *type, const char *text)
@ -225,9 +223,7 @@ void core_init(void)
client_start_time = time(NULL);
modules_init();
#ifndef WIN32
pidwait_init();
#endif
net_disconnect_init();
signals_init();
@ -303,9 +299,7 @@ void core_deinit(void)
signals_deinit();
net_disconnect_deinit();
#ifndef WIN32
pidwait_deinit();
#endif
modules_deinit();
g_free(irssi_dir);