Commit 6217c29e 6217c29e120cff7cdb4cf4a73501bb4c48cd137a by uid65697

Minor changes

1 parent a1495720
......@@ -105,14 +105,6 @@ list_retrieve_header (void *item, void *data, int idx, char **pval)
return 1;
}
static int
waitdebug()
{
static volatile int _st=0;
while (!_st)
_st=_st;
}
/* The test proper */
......
......@@ -212,14 +212,6 @@ decode_boolean (char *str)
return 0;
}
static int
waitdebug()
{
static volatile int _st=0;
while (!_st)
_st=_st;
}
/* Signal handling */
......@@ -253,7 +245,6 @@ static int got_sigpipe;
static RETSIGTYPE
sigpipe_handler (int sig ARG_UNUSED)
{
printf("PIPE!\n");
got_sigpipe = 1;
}
......