diff options
author | Michael Brown <mcb30@etherboot.org> | 2008-11-18 16:18:32 -0800 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2008-11-19 19:12:53 +0000 |
commit | dc60c2414658f27b88f212bba8a36180ab8657fb (patch) | |
tree | d4ad6d883d3fe6d4f7dfb9f75786f2815537d7dd /src/core/main.c | |
parent | 446b6d5fddb95901e8874475597c75ed3cacfdde (diff) | |
download | ipxe-dc60c2414658f27b88f212bba8a36180ab8657fb.tar.gz |
[i386] Rename __cdecl to __asmcall
__cdecl is a misleading name, since it currently encapsulates both
cdecl and regparm(0) attributes. Rename to __asmcall.
Diffstat (limited to 'src/core/main.c')
-rw-r--r-- | src/core/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/main.c b/src/core/main.c index aaf8111b..120f87f8 100644 --- a/src/core/main.c +++ b/src/core/main.c @@ -34,7 +34,7 @@ static struct feature features_end[0] __table_end ( struct feature, features ); * * @ret rc Return status code */ -__cdecl int main ( void ) { +__asmcall int main ( void ) { struct feature *feature; initialise(); |