*** empty log message ***

This commit is contained in:
hyung-hwan 2006-11-28 04:38:07 +00:00
parent 7a8bac5a3b
commit 79c76a33e2
2 changed files with 11 additions and 3 deletions

View File

@ -1,5 +1,5 @@
/* /*
* $Id: StdAwk.java,v 1.5 2006-11-26 15:55:43 bacon Exp $ * $Id: StdAwk.java,v 1.6 2006-11-28 04:38:07 bacon Exp $
*/ */
package ase.awk; package ase.awk;
@ -23,6 +23,14 @@ public abstract class StdAwk extends Awk
public StdAwk () throws Exception public StdAwk () throws Exception
{ {
super (); super ();
addBuiltinFunction ("xxx", 1, 1);
}
public int xxx ()
{
System.out.println ("xxx....\n");
return 0;
} }
/* == major methods == */ /* == major methods == */

View File

@ -1,5 +1,5 @@
/* /*
* $Id: awk.c,v 1.129 2006-11-28 04:30:57 bacon Exp $ * $Id: awk.c,v 1.130 2006-11-28 04:38:07 bacon Exp $
*/ */
#include <ase/awk/awk.h> #include <ase/awk/awk.h>
@ -734,7 +734,7 @@ static void __awk_free (void* ptr, void* custom_data)
#define __awk_tolower towlower #define __awk_tolower towlower
#endif #endif
static int __handle_bfn (ase_awk_run_t* run) static int __handle_bfn (ase_awk_run_t* run, const ase_char_t* fnm, ase_size_t fnl)
{ {
xp_printf (ASE_T("__handle_bfn\n")); xp_printf (ASE_T("__handle_bfn\n"));
} }