Here's the error I get:
genlib.h:225:1: error: stray ‘\32’ in program
genlib.h
is defined in: http://pastebin.com/KgM3J24W
Here's my code:
/*
* file: hello.c
* -----------
* This program prints the message "Hello World."
* On the screen. The program is taken from the
* classic C reference text "The C Programing
* Language" by Brian Kemighan and Dennis Richie.
*/
#include <stdio.h>
#include "genlib.h"
int main()
{
printf("Hello, World.\n");
return 0;
}