diff --git a/src/glwin.c b/src/glwin.c index 66883b2a..c5c4388f 100644 --- a/src/glwin.c +++ b/src/glwin.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2007-2021 Kim Woelders + * Copyright (C) 2007-2022 Kim Woelders * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to @@ -725,20 +725,6 @@ GlwinExit(void) * GLwin Module */ -static void -GlwinSighan(int sig, void *prm __UNUSED__) -{ - switch (sig) - { - case ESIGNAL_START: - break; - - case ESIGNAL_EXIT: - GlwinExit(); - break; - } -} - static void GlwinIpc(const char *params) { @@ -772,7 +758,7 @@ extern const EModule ModGlwin; const EModule ModGlwin = { "glwin", NULL, - GlwinSighan, + NULL, MOD_ITEMS(GlwinIpcArray), MOD_ITEMS(GlwinCfgItems) };