about summary refs log tree commit diff stats
path: root/src/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/include')
-rwxr-xr-xsrc/include/signals.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/signals.h b/src/include/signals.h
index 513e5812..22e96d15 100755
--- a/src/include/signals.h
+++ b/src/include/signals.h
@@ -6,7 +6,7 @@ typedef void (*sighandler_t)(int);
 
 typedef struct x64_sigaction_s {
 	union {
-	  __sighandler_t _sa_handler;
+	  sighandler_t _sa_handler;
 	  void (*_sa_sigaction)(int, siginfo_t *, void *);
 	} _u;
 	sigset_t sa_mask;
@@ -16,7 +16,7 @@ typedef struct x64_sigaction_s {
 
 typedef struct x64_sigaction_restorer_s {
 	union {
-	  __sighandler_t _sa_handler;
+	  sighandler_t _sa_handler;
 	  void (*_sa_sigaction)(int, siginfo_t *, void *);
 	} _u;
 	uint32_t sa_flags;
@@ -38,4 +38,4 @@ void fini_signal_helper();
 
 void emit_signal(x64emu_t* emu, int sig, void* addr, int code);
 
-#endif //__SIGNALS_H__
\ No newline at end of file
+#endif //__SIGNALS_H__