mirror of
https://github.com/upx/upx
synced 2025-09-28 19:06:07 +08:00
46 lines
1.1 KiB
C
46 lines
1.1 KiB
C
/* ACC -- Automatic Compiler Configuration
|
|
|
|
Copyright (C) 1996-2003 Markus Franz Xaver Johannes Oberhumer
|
|
All Rights Reserved.
|
|
|
|
This software is a copyrighted work licensed under the terms of
|
|
the GNU General Public License. Please consult the file "ACC_LICENSE"
|
|
for details.
|
|
|
|
Markus F.X.J. Oberhumer
|
|
<markus@oberhumer.com>
|
|
http://www.oberhumer.com/
|
|
*/
|
|
|
|
|
|
#ifndef __ACC_INCI_H_INCLUDED
|
|
#define __ACC_INCI_H_INCLUDED
|
|
|
|
/* internal system includes */
|
|
|
|
#if (ACC_OS_TOS && (ACC_CC_PUREC || ACC_CC_TURBOC))
|
|
# include <tos.h>
|
|
#elif (ACC_OS_WIN32 || ACC_OS_WIN64 || ACC_OS_CYGWIN || (ACC_OS_EMX && defined(__RSXNT__)))
|
|
# if 1 && !defined(WIN32_LEAN_AND_MEAN)
|
|
# define WIN32_LEAN_AND_MEAN 1
|
|
# endif
|
|
# include <windows.h>
|
|
# define ACC_H_WINDOWS_H 1
|
|
#elif (ACC_OS_DOS16 || ACC_OS_DOS32 || ACC_OS_WIN16)
|
|
# if (ACC_CC_BORLANDC || ACC_CC_TURBOC)
|
|
# include <dir.h>
|
|
# elif defined(__DJGPP__)
|
|
# include <sys/exceptn.h>
|
|
# elif (ACC_CC_PACIFIC)
|
|
# include <unixio.h>
|
|
# include <sys.h>
|
|
# endif
|
|
#endif
|
|
|
|
#endif /* already included */
|
|
|
|
|
|
/*
|
|
vi:ts=4:et
|
|
*/
|