diff options
-rw-r--r-- | blob.c | 1 | ||||
-rw-r--r-- | blob.h | 3 |
2 files changed, 1 insertions, 3 deletions
@@ -1,6 +1,5 @@ #include "blob.h" -const blob_t BLOB_NULL = { NULL, 0 }; static const char *xd = "0123456789abcdefghijklmnopqrstuvwxyz"; static inline int dx(int c) @@ -28,8 +28,7 @@ typedef struct blob { #define BLOB_STRLEN(str) (blob_t){(str), strlen(str)} #define BLOB_STR_INIT(str) {(str), sizeof(str)-1} #define BLOB_STR(str) (blob_t) BLOB_STR_INIT(str) - -extern const blob_t BLOB_NULL; +#define BLOB_NULL (blob_t){NULL, 0} static inline int blob_is_null(blob_t b) { |