Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how do you solve error: missing function header (old-style formal list?)

Status
Not open for further replies.

Panchovia

Programmer
May 6, 2010
48
0
0
CW
When I run this code above error appears how do you solve this error


#include "stdafx.h"
#include <allegro5\allegro.h>
#include <allegro5\allegro_native_dialog.h>



int main(int argc, char* argv[]);

{allegro_init(); allegro_message("Hello World"); return 0; }
 
Try removing the ; on the line with main.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top