[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: C source



	Hi.

On Fri, Jul 15, 2016 at 11:34:38AM +0200, Pol Hallen wrote:
> Hi, all
> 
> I've this error:
> 
> fatal error: md5.h: No such file or directory
> compilation terminated.
> 
> when I compiled a source C
> 
> gcc source.c
> 
> [...]
> #include <string.h>
> #include <stdlib.h>
> #include <stdio.h>
> #include "md5.h"
> [...]
> 
> I've openssl-dev installed, but I don't understand how to audit this error..
> 
> any idea?

#include with encased in 'less' and 'more' characters instructs
preprocessor to search header files system-wide. A search path can be
modified with -L flag.

#include with quotes instructs preprocessor to search a header file in
the current directory.

So probably you meant to write this:

#include <md5.h>

Reco


Reply to: