Removed unnecessary r_lib.h dependency in r_util.h

This commit is contained in:
Lukas Dresel 2016-04-04 20:34:26 +02:00 committed by pancake
parent d706552d2f
commit cb60759219
3 changed files with 2 additions and 1 deletions

View File

@ -11,7 +11,6 @@
#include <r_flist.h> // radare fixed pointer array iterators
#include <list.h> // kernel linked list
#include <r_th.h>
#include <r_lib.h>
#include <dirent.h>
#include <sys/time.h>
#if __UNIX__

View File

@ -9,6 +9,7 @@
#include <fcntl.h>
#include <r_util.h>
#include <r_socket.h>
#include <r_lib.h>
#include <sys/stat.h>
#include <sys/types.h>
#if __APPLE__

View File

@ -13,6 +13,7 @@
#include <dirent.h>
#include <r_types.h>
#include <r_util.h>
#include <r_lib.h>
#if (__linux__ && __GNU_LIBRARY__) || defined(NETBSD_WITH_BACKTRACE)
# include <execinfo.h>
#endif