syscalls_cpp.hpp 282 B

12345678910111213
  1. #ifndef SYSCALLS_CPP_HPP_
  2. #define SYSCALLS_CPP_HPP_
  3. /* The ABI requires a 32-bit type.*/
  4. typedef int __guard;
  5. int __cxa_guard_acquire(__guard *);
  6. void __cxa_guard_release (__guard *);
  7. void __cxa_guard_abort (__guard *);
  8. void *__dso_handle = NULL;
  9. #endif /* SYSCALLS_CPP_HPP_ */