2002-10-07 04:41:03 +00:00
|
|
|
#ifndef _SLANG_INCLUDE_H_
|
|
|
|
#define _SLANG_INCLUDE_H_
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "sl-feat.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#if defined(__QNX__) && defined(__WATCOMC__)
|
|
|
|
# include <unix.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_STDLIB_H
|
|
|
|
# include <stdlib.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
# include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
2004-11-01 06:30:43 +00:00
|
|
|
#ifdef HAVE_MALLOC_H
|
|
|
|
# include <malloc.h>
|
2002-10-07 04:41:03 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_MEMORY_H
|
|
|
|
# include <memory.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* _SLANG_INCLUDE_H_ */
|