mud++0.26/etc/
mud++0.26/etc/guilds/
mud++0.26/log/
mud++0.26/mudC/
mud++0.26/player/
mud++0.26/src/unix/
#include <stdlib.h>
#ifndef OSDEPEND_H
#define OSDEPEND_H

#if defined(WIN32)
#include "win32/osdepend.h"
#elif defined(__CYGWIN32__)
// more elifs when needed
#else
#include "unix/osdepend.h"
#endif

#endif