chiark / gitweb /
not implemented things -> assert !implemented
authorian <ian>
Tue, 12 Oct 1999 23:23:47 +0000 (23:23 +0000)
committerian <ian>
Tue, 12 Oct 1999 23:23:47 +0000 (23:23 +0000)
client/adh-main.c
client/adh-query.c

index 121c195ded555e14153d7d10e2a0c5056b5a4343..289f0d43c80770d09dbe520c463a8a00ee446ca0 100644 (file)
@@ -68,13 +68,13 @@ char *xstrsave(const char *str) {
   return p;
 }
 
-void of_type(const struct optioninfo *oi, const char *arg) { abort(); }
+void of_type(const struct optioninfo *oi, const char *arg) { assert(!"implemented"); }
 
 int rcode;
 
 void setnonblock(int fd, int nonblock) { }
 
-static void read_query(void) { abort(); }
+static void read_query(void) { assert(!"implemented"); }
 
 int main(int argc, const char *const *argv) {
   const char *arg;
index 711b489d730028c31b92740abe9a30f12be9196a..1edf1608879e8551ae8b174dcee184e673d0090b 100644 (file)
@@ -202,5 +202,7 @@ void of_asynch_id(const struct optioninfo *oi, const char *arg) {
   ov_id= xstrsave(arg);
 }
 
-void of_cancel_id(const struct optioninfo *oi, const char *arg) { abort(); }
+void of_cancel_id(const struct optioninfo *oi, const char *arg) {
+  assert(!"implemented");
+}