diff options
| author | spicyjpeg <thatspicyjpeg@gmail.com> | 2023-07-03 08:13:23 +0200 |
|---|---|---|
| committer | spicyjpeg <thatspicyjpeg@gmail.com> | 2023-07-03 08:13:23 +0200 |
| commit | 06e65bea3a778b2dae5af77a7935ae3868ddd4d3 (patch) | |
| tree | 3af954ebead7540c9478d0a026ca2e59f3cf7b64 /libpsn00b/include | |
| parent | 472cf1c254ea5be5aff8a6c7067cbed2d467d85b (diff) | |
Fix setjmp.h, FntSort(), examples, rewrite system/timer
Diffstat (limited to 'libpsn00b/include')
| -rw-r--r-- | libpsn00b/include/setjmp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libpsn00b/include/setjmp.h b/libpsn00b/include/setjmp.h index 0f05b67..a7597e0 100644 --- a/libpsn00b/include/setjmp.h +++ b/libpsn00b/include/setjmp.h @@ -11,13 +11,13 @@ #include <stdint.h> -typedef struct _JumpBuffer { +typedef struct { uint32_t ra, sp, fp; uint32_t s0, s1, s2, s3, s4, s5, s6, s7; uint32_t gp; } JumpBuffer; -typedef JumpBuffer *jmp_buf; +typedef JumpBuffer jmp_buf[1]; #ifdef __cplusplus extern "C" { |
