2017-03-26 10:00:00 +01:00

13 lines
255 B
C

#include <stdio.h>
/*
Not mandatory in this example since we define the function here.
But still a good idea to ensure that the prototypes are compatible.
Often required because of header struct declarations.
*/
#include "a.h"
void a() { puts("a"); }