--------------------- PatchSet 1400 Date: 2001/01/27 01:24:20 Author: adri Branch: sfs Tag: (none) Log: add xassert() which is required for sfs_test to compile and link. She now works! Members: src/fs/sfs/sfs_shim.c:1.1.2.1->1.1.2.2 Index: squid/src/fs/sfs/sfs_shim.c =================================================================== RCS file: /cvsroot/squid-sf//squid/src/fs/sfs/Attic/sfs_shim.c,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -u -r1.1.2.1 -r1.1.2.2 --- squid/src/fs/sfs/sfs_shim.c 27 Jan 2001 00:36:12 -0000 1.1.2.1 +++ squid/src/fs/sfs/sfs_shim.c 27 Jan 2001 01:24:20 -0000 1.1.2.2 @@ -39,3 +39,10 @@ list->tail = m->prev; m->next = m->prev = NULL; } + +void +xassert(const char *msg, const char *file, int line) +{ + printf("Assertion failed: %s:%d - %s\n", file, line, msg); +} +