forked from KolibriOS/kolibrios
4f5f25a6c2
git-svn-id: svn://kolibrios.org@1882 a494cfbc-eb01-0410-851d-a64ba20cac60
77 lines
1.6 KiB
C
Executable File
77 lines
1.6 KiB
C
Executable File
/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
|
|
#ifndef __dj_include_debug_stab_h_
|
|
#define __dj_include_debug_stab_h_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifndef __dj_ENFORCE_ANSI_FREESTANDING
|
|
|
|
#ifndef __STRICT_ANSI__
|
|
|
|
#ifndef _POSIX_SOURCE
|
|
|
|
/* This is file STAB.H */
|
|
/*
|
|
** Copyright (C) 1993 DJ Delorie, 24 Kirsten Ave, Rochester NH 03867-2954
|
|
**
|
|
** This file is distributed under the terms listed in the document
|
|
** "copying.dj", available from DJ Delorie at the address above.
|
|
** A copy of "copying.dj" should accompany this file; if not, a copy
|
|
** should be available from where this file was obtained. This file
|
|
** may not be distributed without a verbatim copy of "copying.dj".
|
|
**
|
|
** This file is distributed WITHOUT ANY WARRANTY; without even the implied
|
|
** warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
*/
|
|
|
|
#if !defined (N_UNDF)
|
|
#define N_UNDF 0
|
|
#endif
|
|
#if !defined (N_ABS)
|
|
#define N_ABS 2
|
|
#endif
|
|
#if !defined (N_TEXT)
|
|
#define N_TEXT 4
|
|
#endif
|
|
#if !defined (N_DATA)
|
|
#define N_DATA 6
|
|
#endif
|
|
#if !defined (N_BSS)
|
|
#define N_BSS 8
|
|
#endif
|
|
#if !defined (N_FN)
|
|
#define N_FN 15
|
|
#endif
|
|
|
|
#if !defined (N_EXT)
|
|
#define N_EXT 1
|
|
#endif
|
|
#if !defined (N_TYPE)
|
|
#define N_TYPE 0x1e
|
|
#endif
|
|
#if !defined (N_STAB)
|
|
#define N_STAB 0xe0
|
|
#endif
|
|
|
|
#if !defined (N_SO)
|
|
#define N_SO 0x64
|
|
#endif
|
|
#if !defined (N_SLINE)
|
|
#define N_SLINE 0x44
|
|
#endif
|
|
|
|
#endif /* !_POSIX_SOURCE */
|
|
#endif /* !__STRICT_ANSI__ */
|
|
#endif /* !__dj_ENFORCE_ANSI_FREESTANDING */
|
|
|
|
#ifndef __dj_ENFORCE_FUNCTION_CALLS
|
|
#endif /* !__dj_ENFORCE_FUNCTION_CALLS */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* !__dj_include_debug_stab_h_ */
|