eolian_cxx: add missing libgen.h include for basename() to fix build on OS X

On Linux this went through and has gone unnoticed. basename() needs libgen.h
though and eolian_cxx was not including it.
This commit is contained in:
Stefan Schmidt 2016-06-06 11:07:51 +02:00
parent dabdebf026
commit 2f22a634b0
1 changed files with 1 additions and 0 deletions

View File

@ -5,6 +5,7 @@
#include <stdlib.h>
#include <unistd.h>
#include <getopt.h>
#include <libgen.h>
#include <string>
#include <algorithm>