mirror of
https://github.com/cc65/cc65.git
synced 2026-03-10 17:21:49 +00:00
16 lines
239 B
C
16 lines
239 B
C
#include <stdarg.h>
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <time.h>
|
|
#include <unistd.h>
|
|
|
|
// compile with --standard c99
|
|
int main()
|
|
{
|
|
return 0;
|
|
}
|