git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7707 35acf78f-673a-0410-8e92-d51de3d6d3f4

This commit is contained in:
Giovanni Di Sirio 2015-03-01 09:21:57 +00:00
parent e6c4363ddb
commit 0e4fcbbfab
1 changed files with 2 additions and 3 deletions

View File

@ -1,8 +1,8 @@
#ifndef SYSCALLS_CPP_HPP_
#define SYSCALLS_CPP_HPP_
/* The ABI requires a 64-bit type. */
__extension__ typedef int __guard __attribute__((mode (__DI__)));
/* The ABI requires a 32-bit type.*/
typedef int __guard;
int __cxa_guard_acquire(__guard *);
void __cxa_guard_release (__guard *);
@ -10,5 +10,4 @@ void __cxa_guard_abort (__guard *);
void *__dso_handle = NULL;
#endif /* SYSCALLS_CPP_HPP_ */