diff options
author | Andrey Hristov <andrey@php.net> | 1999-07-27 17:17:05 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 1999-07-27 17:17:05 +0000 |
commit | a99ccfc6eff88c0a214763e02cbdf3aa0301a9fc (patch) | |
tree | 315fb71a54d67e4850ff7921aa7931a048d144fd /ext/dbase/dbase.c | |
parent | c6840056a910e53de532b21d5481db3c1bf11a40 (diff) | |
download | php-git-a99ccfc6eff88c0a214763e02cbdf3aa0301a9fc.tar.gz |
Oops.
Diffstat (limited to 'ext/dbase/dbase.c')
-rw-r--r-- | ext/dbase/dbase.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/ext/dbase/dbase.c b/ext/dbase/dbase.c index cdac0642ef..9e1c14df09 100644 --- a/ext/dbase/dbase.c +++ b/ext/dbase/dbase.c @@ -708,17 +708,17 @@ PHP_FUNCTION(dbase_create) { /* }}} */ function_entry dbase_functions[] = { - PHP_FUNCTION(dbase_open, NULL) - PHP_FUNCTION(dbase_create, NULL) - PHP_FUNCTION(dbase_close, NULL) - PHP_FUNCTION(dbase_numrecords, NULL) - PHP_FUNCTION(dbase_numfields, NULL) - PHP_FUNCTION(dbase_add_record, NULL) - PHP_FUNCTION(dbase_replace_record, NULL) - PHP_FUNCTION(dbase_get_record, NULL) - PHP_FUNCTION(dbase_get_record_with_names, NULL) - PHP_FUNCTION(dbase_delete_record, NULL) - PHP_FUNCTION(dbase_pack, NULL) + PHP_FE(dbase_open, NULL) + PHP_FE(dbase_create, NULL) + PHP_FE(dbase_close, NULL) + PHP_FE(dbase_numrecords, NULL) + PHP_FE(dbase_numfields, NULL) + PHP_FE(dbase_add_record, NULL) + PHP_FE(dbase_replace_record, NULL) + PHP_FE(dbase_get_record, NULL) + PHP_FE(dbase_get_record_with_names, NULL) + PHP_FE(dbase_delete_record, NULL) + PHP_FE(dbase_pack, NULL) {NULL, NULL, NULL} }; |