diff options
author | Hartmut Holzgraefe <hholzgra@php.net> | 2001-12-16 10:18:45 +0000 |
---|---|---|
committer | Hartmut Holzgraefe <hholzgra@php.net> | 2001-12-16 10:18:45 +0000 |
commit | 424679e9fb81cfc490d99741151a5166bcedd07c (patch) | |
tree | e6361fca9149ad290c585d8bc5f3804fb174cf39 | |
parent | afba31f4405b1644277277ec6715d70a17a97e6b (diff) | |
download | php-git-424679e9fb81cfc490d99741151a5166bcedd07c.tar.gz |
proto fixes
-rw-r--r-- | ext/standard/ftok.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/ftok.c b/ext/standard/ftok.c index ace09d2dcb..1cf7be3a17 100644 --- a/ext/standard/ftok.c +++ b/ext/standard/ftok.c @@ -25,8 +25,8 @@ #include <sys/types.h> #include <sys/ipc.h> -/* {{{ proto int ftok(string pathname, char proj) - convert a pathname and a project identifier to a System V IPC key */ +/* {{{ proto int ftok(string pathname, string proj) + Convert a pathname and a project identifier to a System V IPC key */ PHP_FUNCTION(ftok) { pval **pathname, **proj; |