diff options
author | Ziv Scully <zivscully@gmail.com> | 2015-12-30 15:55:36 -0500 |
---|---|---|
committer | Ziv Scully <zivscully@gmail.com> | 2015-12-30 15:55:36 -0500 |
commit | e3a98699c6736846c3365fb6a22146d3481a10d0 (patch) | |
tree | 819f408c73bf855f7a43202ee34c557b3d1ac109 /src | |
parent | e7c13d8091aa060a2ed7a769d9b6885dfd6b2b6e (diff) |
Remove duplicate typedef declarations.
Diffstat (limited to 'src')
-rw-r--r-- | src/c/urweb.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/c/urweb.c b/src/c/urweb.c index 50aac5e8..c057688c 100644 --- a/src/c/urweb.c +++ b/src/c/urweb.c @@ -4562,13 +4562,6 @@ void uw_set_remoteSock(uw_context ctx, int sock) { // Sqlcache -typedef struct uw_Sqlcache_Entry { - char *key; - uw_Sqlcache_Value *value; - unsigned long timeInvalid; - UT_hash_handle hh; -} uw_Sqlcache_Entry; - static void uw_Sqlcache_freeValue(uw_Sqlcache_Value *value) { if (value) { free(value->result); |