diff options
Diffstat (limited to 'src/st-util/gdb-remote.h')
-rw-r--r-- | src/st-util/gdb-remote.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/st-util/gdb-remote.h b/src/st-util/gdb-remote.h index 6e76746..ec99045 100644 --- a/src/st-util/gdb-remote.h +++ b/src/st-util/gdb-remote.h @@ -1,8 +1,10 @@ -#ifndef _GDB_REMOTE_H_ -#define _GDB_REMOTE_H_ +#ifndef GDB_REMOTE_H +#define GDB_REMOTE_H -int gdb_send_packet(int fd, char* data); -int gdb_recv_packet(int fd, char** buffer); -int gdb_check_for_interrupt(int fd); +#include <stdint.h> -#endif // _GDB_REMOTE_H_ +int32_t gdb_send_packet(int32_t fd, char* data); +int32_t gdb_recv_packet(int32_t fd, char** buffer); +int32_t gdb_check_for_interrupt(int32_t fd); + +#endif // GDB_REMOTE_H |