Skip to content
Snippets Groups Projects
easy.h 498 B
Newer Older
  • Learn to ignore specific revisions
  • #if __GNUC__ >= 4
    
    #define LIBEASY_API	__attribute__((visibility("default")))
    
    #define LIBEASY_API
    
    #include "event.h"
    #include "utils.h"
    
    #include "debug.h"
    
    Anjan Chanda's avatar
    Anjan Chanda committed
    #include "hlist.h"
    
    #define libeasy_err(...)	pr_error("libeasy: " __VA_ARGS__)
    #define libeasy_warn(...)	pr_warn("libeasy: " __VA_ARGS__)
    #define libeasy_info(...)	pr_info("libeasy: " __VA_ARGS__)
    #define libeasy_dbg(...)	pr_debug("libeasy: " __VA_ARGS__)