Skip to content

Commit

Permalink
Move #include out of #ifdef
Browse files Browse the repository at this point in the history
  • Loading branch information
plusvic committed Oct 20, 2016
1 parent d272b9c commit d348dd3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -74,6 +74,7 @@ x64/
*.sdf
*.opendb
*.opensdf
*.VC.db

# NuGet
windows/*/packages/
2 changes: 1 addition & 1 deletion libyara/include/yara/utils.h
Expand Up @@ -32,6 +32,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#define YR_UTILS_H

#include <config.h>
#include <limits.h>

#ifndef TRUE
#define TRUE 1
Expand Down Expand Up @@ -106,7 +107,6 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#else

#include <stdlib.h>
#include <limits.h>

#define assertf(expr, msg, ...) \
if(!(expr)) { \
Expand Down

0 comments on commit d348dd3

Please sign in to comment.