HOWTO: Create C/C++ libraries in Linux (static and dynamic linking)

sanaz (1)
Hi people,

I'm trying to compile the following code in ubuntu 10.04
#include <map.h>

And i get this error:

<map.h> no such file or directory
kbw (5371)
You probably mean
 
#include <map> 
Registered users can post here. Sign in or register to post.