mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-03 04:12:10 +08: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;
|
||
|
}
|