*** empty log message ***

This commit is contained in:
2006-06-19 15:43:27 +00:00
parent c871f68651
commit 706a535740
7 changed files with 93 additions and 48 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: awk.c,v 1.38 2006-06-19 09:08:50 bacon Exp $
* $Id: awk.c,v 1.39 2006-06-19 15:43:27 bacon Exp $
*/
#include <xp/awk/awk.h>
@ -176,8 +176,12 @@ static xp_ssize_t process_extio_pipe (
{
return -1;
}
}
default:
{
return -1;
}
}
}
static xp_ssize_t process_extio_file (
@ -222,6 +226,11 @@ static xp_ssize_t process_extio_file (
{
return -1;
}
default:
{
return -1;
}
}
}