mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-07-16 09:07:32 +02:00
11 lines
228 B
C
11 lines
228 B
C
//---
|
|
// gint:syscalls - calls to CASIOWIN
|
|
//---
|
|
|
|
#ifndef GINT_SYSCALLS
|
|
#define GINT_SYSCALLS
|
|
|
|
/* __os_version(): Get OS version on the form MM.mm.iiii (10 bytes) */
|
|
void __os_version(char *version);
|
|
|
|
#endif /* GINT_SYSCALLS */
|