Skip to content

Commit

Permalink
fix undefined referance issues
Browse files Browse the repository at this point in the history
  • Loading branch information
daTokenizer committed Nov 24, 2016
1 parent 9e98575 commit 72a4d73
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ else
SHOBJ_CFLAGS ?= -dynamic -fno-common -g -ggdb
SHOBJ_LDFLAGS ?= -bundle -undefined dynamic_lookup
endif
CFLAGS = -I$(RM_INCLUDE_DIR) -Wall -g -fPIC -lc -lm -O3 -std=gnu99
CFLAGS = -I$(RM_INCLUDE_DIR) -Wall -g -fPIC -lc -lm -lrt -O3 -std=gnu99
CC=gcc

all: rmutil module.so
Expand Down
2 changes: 1 addition & 1 deletion src/module.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#include "rmutil/test_util.h"
#include "rmutil/alloc.h"

#define _POSIX_C_SOURCE 200809L
// #define _POSIX_C_SOURCE 200809L

//##########################################################
//#
Expand Down

0 comments on commit 72a4d73

Please sign in to comment.