mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-01-06 08:53:36 +01: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 */
|