aboutsummaryrefslogtreecommitdiff
path: root/libs/SDL/error.S
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@gmail.com>2026-02-18 13:19:52 +0100
committerFelix Morgner <felix.morgner@gmail.com>2026-02-18 13:19:52 +0100
commit2a1f31365dade481c32efc3307f94cc052d00f7f (patch)
tree54acaae0d6c18106a82eb263e3b860197908f903 /libs/SDL/error.S
parent63fd09807c528915ac5ba6bc9eb11520cbf073e0 (diff)
downloadsnake.s-2a1f31365dade481c32efc3307f94cc052d00f7f.tar.xz
snake.s-2a1f31365dade481c32efc3307f94cc052d00f7f.zip
refactor: split SDL bindings
Diffstat (limited to 'libs/SDL/error.S')
-rw-r--r--libs/SDL/error.S8
1 files changed, 8 insertions, 0 deletions
diff --git a/libs/SDL/error.S b/libs/SDL/error.S
new file mode 100644
index 0000000..19efb5a
--- /dev/null
+++ b/libs/SDL/error.S
@@ -0,0 +1,8 @@
+//! @file error.S
+//!
+//! Assembler bindings for SDL2 (SDL_error.h)
+
+//! @fn char const * SDL_GetError(void)
+//! @return the last error message
+.type SDL_GetError, @function
+.extern SDL_GetError \ No newline at end of file