mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-29 10:31:03 -06:00
12 lines
142 B
C
12 lines
142 B
C
#include <stdio.h>
|
|
|
|
extern int qax(void);
|
|
extern int qux(void);
|
|
|
|
int main(void)
|
|
{
|
|
printf("qux: %d qax: %d\n", qux(), qax());
|
|
|
|
return 0;
|
|
}
|