Skip to content

Commit

Permalink
mi_xmlrpc: define TRUE/FALSE if not defined
Browse files Browse the repository at this point in the history
- reported by GH #885
  • Loading branch information
miconda committed Dec 9, 2016
1 parent 4360021 commit 1bba5fa
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/modules/mi_xmlrpc/abyss_data.c
Expand Up @@ -45,6 +45,14 @@

#include "abyss_data.h"

#ifndef TRUE
#define TRUE 1
#endif /* TRUE */

#ifndef FALSE
#define FALSE 0
#endif /* FALSE */

/*********************************************************************
** List
*********************************************************************/
Expand Down

0 comments on commit 1bba5fa

Please sign in to comment.