woj-server/resource/runner/problem/example/judge/gadget.c

4 lines
126 B
C
Raw Normal View History

2022-10-20 18:21:11 +08:00
#include<stdio.h>
void construct() __attribute__((constructor(101)));
void construct() { puts("Greetings from gadgets..."); }