Created
April 28, 2012 16:12
-
-
Save Veejay/2520005 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
hash_table.c:165:3: error: expected ')' | |
assert(code == LL_DELETE_OK); | |
^ | |
hash_table.c:165:18: note: instantiated from: | |
assert(code == LL_DELETE_OK); | |
^ | |
hash_table.c:7:23: note: instantiated from: | |
#define LL_DELETE_OK 0; | |
^ | |
hash_table.c:165:3: note: to match this '(' | |
assert(code == LL_DELETE_OK); | |
^ | |
/usr/include/assert.h:93:24: note: instantiated from: | |
(__builtin_expect(!(e), 0) ? __assert_rtn(__func__, __FILE__, __LINE__, #e) : (void)0) | |
^ | |
hash_table.c:165:3: error: expected ')' | |
assert(code == LL_DELETE_OK); | |
^ | |
hash_table.c:165:18: note: instantiated from: | |
assert(code == LL_DELETE_OK); | |
^ | |
hash_table.c:7:23: note: instantiated from: | |
#define LL_DELETE_OK 0; | |
^ | |
hash_table.c:165:3: note: to match this '(' | |
assert(code == LL_DELETE_OK); | |
^ | |
/usr/include/assert.h:93:22: note: instantiated from: | |
(__builtin_expect(!(e), 0) ? __assert_rtn(__func__, __FILE__, __LINE__, #e) : (void)0) | |
^ | |
hash_table.c:165:3: error: expected expression | |
assert(code == LL_DELETE_OK); | |
^ | |
In file included from hash_table.c:4: | |
/usr/include/assert.h:93:26: note: instantiated from: | |
(__builtin_expect(!(e), 0) ? __assert_rtn(__func__, __FILE__, __LINE__, #e) : (void)0) | |
^ | |
3 errors generated. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
clang -c linked_list.c
clang -c hash_table.c
clang -o main main.c hash_table.o linked_list.o
Et c'est torché.