2014-08-03 20:23:16 +00:00
|
|
|
#ifndef SYSCALLS_CPP_HPP_
|
|
|
|
#define SYSCALLS_CPP_HPP_
|
|
|
|
|
2015-03-01 09:21:57 +00:00
|
|
|
/* The ABI requires a 32-bit type.*/
|
|
|
|
typedef int __guard;
|
2014-08-03 20:23:16 +00:00
|
|
|
|
|
|
|
int __cxa_guard_acquire(__guard *);
|
|
|
|
void __cxa_guard_release (__guard *);
|
|
|
|
void __cxa_guard_abort (__guard *);
|
|
|
|
|
|
|
|
void *__dso_handle = NULL;
|
|
|
|
|
|
|
|
#endif /* SYSCALLS_CPP_HPP_ */
|