blob: ea2d8530ee3274081bb78a92050a5bbbed0b41cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef __STDC_VERSION__
//! @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
#endif
|