mirror of
https://github.com/reactos/CMake.git
synced 2025-01-12 14:30:52 +00:00
16 lines
190 B
C++
16 lines
190 B
C++
int bar();
|
|
#include <stdio.h>
|
|
|
|
int main(int ac, char** av)
|
|
{
|
|
(void)ac;
|
|
(void)av;
|
|
int ret = bar();
|
|
printf("bar = %d\n", ret);
|
|
if(ret == 10)
|
|
{
|
|
return 0;
|
|
}
|
|
return -1;
|
|
}
|