mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 16:50:57 +00:00
10 lines
135 B
C
10 lines
135 B
C
#include <stdio.h>
|
|
const char* sd_get_seats(void);
|
|
|
|
int
|
|
main (int argc, char **argv)
|
|
{
|
|
printf("%s\n", sd_get_seats());
|
|
return 0;
|
|
}
|