aboutsummaryrefslogtreecommitdiffstats
path: root/c/main.c
blob: 8cc320a84573d88ef29726d4b5c0166608ae02db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include <inttypes.h>
#include <stdbool.h>
#include <stdio.h>
#include <string.h>

#define __maybe_unused__ __attribute__((unused))

#pragma weak main
int main (int argc, char** argv) {
  return 0;
}