15 lines
344 B
C++
15 lines
344 B
C++
|
#ifndef SYSCALLS_CPP_HPP_
|
||
|
#define SYSCALLS_CPP_HPP_
|
||
|
|
||
|
/* The ABI requires a 64-bit type. */
|
||
|
__extension__ typedef int __guard __attribute__((mode (__DI__)));
|
||
|
|
||
|
int __cxa_guard_acquire(__guard *);
|
||
|
void __cxa_guard_release (__guard *);
|
||
|
void __cxa_guard_abort (__guard *);
|
||
|
|
||
|
void *__dso_handle = NULL;
|
||
|
|
||
|
|
||
|
#endif /* SYSCALLS_CPP_HPP_ */
|