repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
unstack - fix ipcvecs
[minix.git]
/
sys
/
arch
/
i386
/
include
/
cdefs.h
blob
3da516304eda2ca50de98dda191f80cf50f0c5be
1
/* $NetBSD: cdefs.h,v 1.8 2011/06/16 13:27:59 joerg Exp $ */
2
3
#ifndef _I386_CDEFS_H_
4
#define _I386_CDEFS_H_
5
6
#if defined(_STANDALONE)
7
#ifdef __PCC__
8
#define __compactcall
9
#else
10
#define __compactcall __attribute__((__regparm__(3)))
11
#endif
12
#endif
13
14
#ifdef __minix
15
#ifndef __ELF__
16
#define __LEADING_UNDERSCORE
17
#endif
18
#else
/* !__minix */
19
/* No arch-specific cdefs. */
20
#endif
21
22
#endif
/* !_I386_CDEFS_H_ */