PeteGallo
Newbie level 3
stdio.h fatal error c1010
hello
i receive a fatal error when i build my MicroSoft VS. project:
fatal error C1010: unexpected end of file while looking for precompiled header.
any guesses?
Thank You
Pete Gallo
hello
i receive a fatal error when i build my MicroSoft VS. project:
fatal error C1010: unexpected end of file while looking for precompiled header.
Code:
/********************************************************************/
/* CanOpen test program. */
/* Master's Productions */
/* created by: Pietro Gallo */
/* -----------------------------------------------------------------*/
/* Filename: canOpen_dtu.c */
/* Date: Jan.22.2006 */
/* Language: ANSI C */
/* O.S.: 32 bit Windows (_WIN32) */
/* Purpose: establish communications with CBM-DIO8 */
/* */
/********************************************************************/
#include "mcanopen.h"
#include <stdio.h>
#include <math.h>
#define CAN_NET 0 /* number of CAN interface */
#define CAN_BAUDRATE 6 /* baudrate */
int main()
{
canCalSetBaudrate(CAN_NET, CAN_BAUDRATE);
return 0;
}
any guesses?
Thank You
Pete Gallo