mirror of
https://github.com/Mercury-Language/mercury.git
synced 2025-12-19 15:54:18 +00:00
Estimated hours taken: 0.1 samples/C_Interface/mercury_calls_c/c_main.c: Add missing #include to suppress compiler warning.
8 lines
90 B
C
8 lines
90 B
C
#include <stdio.h>
|
|
|
|
#include "c_main.h"
|
|
|
|
void c_main(void) {
|
|
printf("In c_main().\n");
|
|
}
|