make fat.handler build again with debug enabled
[tangerine.git] / compiler / arossupport / include / freebsd.h
blob740b49cb003c65f47c9828d695e32da64b8db11f
1 #ifndef AROS_FREEBSD_H
2 #define AROS_FREEBSD_H
4 /*
5 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
6 $Id$
8 Desc: FreeBSD specific things
9 Lang: english
12 #define HAS_STRING_H
13 #define __AROS_STRUCTURE_ALIGNMENT 8
16 To handle the slightly different procedure naming under different
17 version of the FreeBSD compiler. Thankfully we have the very helpful
18 preprocessor symbol __ELF__ defined for us.
20 If we don't have these, then we can use the defaults.
22 #if !defined(__ELF__)
23 #define __AROS_SLIB_ENTRY(n,s) s ## _ ## n
24 #define AROS_ASMSYMNAME(s) s
25 #endif
27 #endif /* AROS_FREEBSD_H */