Using scc from the command line, a source file containing an include compiles without any probloms, i.e. scc /INCLUDE include test.c
In Plato the following code (see below) does not complie. Plato reports an error message (see bottom). What could be the possible solution to avoid this.
#include 'Python.h'
#include <stdio.h>
int main(int argc, char **argv) {
printf('here');
return 0;
}
Cleaning... Clean completed. Compiling file: glue.c E:\PLATO_DLL_TEST\GLUE.C(1) : fatal 4 - Include file Python.h cannot be opened *** Compilation failed Compilation failed.