mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-01-06 08:53:36 +01:00
12 lines
248 B
C
12 lines
248 B
C
|
//---
|
||
|
// gint:core:syscalls - calls to CASIOWIN
|
||
|
//---
|
||
|
|
||
|
#ifndef GINT_CORE_SYSCALLS
|
||
|
#define GINT_CORE_SYSCALLS
|
||
|
|
||
|
/* __os_version(): Get OS version on the form MM.mm.iiii (10 bytes) */
|
||
|
void __os_version(char *version);
|
||
|
|
||
|
#endif /* GINT_CORE_SYSCALLS */
|