diff options
author | foobar <sniper@php.net> | 2001-08-06 12:26:55 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2001-08-06 12:26:55 +0000 |
commit | 89a8b0144cfa16193a1dd1ef2a067baa3969f671 (patch) | |
tree | 228aaeb79449454eead92ebad4f65ff7f54129fa /ext/dbase/dbf_head.c | |
parent | 84042cd9f187e1c74ae1fe941ccd96e3ea77b245 (diff) | |
download | php-git-89a8b0144cfa16193a1dd1ef2a067baa3969f671.tar.gz |
Fix TSRM problem.
Diffstat (limited to 'ext/dbase/dbf_head.c')
-rw-r--r-- | ext/dbase/dbf_head.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/dbase/dbf_head.c b/ext/dbase/dbf_head.c index 650960f5e2..c00bd4ba33 100644 --- a/ext/dbase/dbf_head.c +++ b/ext/dbase/dbf_head.c @@ -7,8 +7,8 @@ #include <stdio.h> #include <fcntl.h> -#include "dbf.h" #include "php.h" +#include "dbf.h" void free_dbf_head(dbhead_t *dbh); int get_dbf_field(dbhead_t *dbh, dbfield_t *dbf); @@ -220,7 +220,7 @@ char *get_dbf_f_fmt(dbfield_t *dbf) return (char *)strdup(format); } -dbhead_t *dbf_open(char *dp, int o_flags) +dbhead_t *dbf_open(char *dp, int o_flags TSRMLS_DC) { int fd; char *cp; |