*** empty log message ***

This commit is contained in:
2007-02-23 08:54:03 +00:00
parent 89e66ed7aa
commit ccee9d5304
5 changed files with 19 additions and 28 deletions

View File

@@ -1,5 +1,5 @@
/*
* $Id: awk.c,v 1.176 2007-02-23 08:21:35 bacon Exp $
* $Id: awk.c,v 1.177 2007-02-23 08:54:03 bacon Exp $
*/
#include <ase/awk/awk.h>
@@ -612,16 +612,6 @@ static void awk_free (ase_mmgr_t* mmgr, void* ptr)
#endif
}
static void* awk_memcpy (void* dst, const void* src, ase_size_t n)
{
return memcpy (dst, src, n);
}
static void* awk_memset (void* dst, int val, ase_size_t n)
{
return memset (dst, val, n);
}
static void print_usage (const ase_char_t* argv0)
{
ase_printf (ASE_T("Usage: %s [-m] [-d] [-a argument]* -f source-file [data-file]*\n"), argv0);