From 551b819fe26edf69619ecf0bd9507eed155c259a Mon Sep 17 00:00:00 2001 From: Adam Chlipala Date: Sat, 30 Jan 2010 11:21:26 -0500 Subject: Update Makefile.in's with new Autotools; add extra 'return NULL' to placate some -Wall --- src/c/urweb.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/c/urweb.c') diff --git a/src/c/urweb.c b/src/c/urweb.c index c97ce5f8..036740aa 100644 --- a/src/c/urweb.c +++ b/src/c/urweb.c @@ -3279,6 +3279,10 @@ uw_Basis_time uw_Basis_now(uw_context ctx) { return time(NULL); } +uw_Basis_time uw_Basis_minusSeconds(uw_context ctx, uw_Basis_time tm, uw_Basis_int n) { + return tm - n; +} + void *uw_get_global(uw_context ctx, char *name) { int i; -- cgit v1.2.3