diff options
author | Mark Musone <musone@php.net> | 1999-08-27 04:22:39 +0000 |
---|---|---|
committer | Mark Musone <musone@php.net> | 1999-08-27 04:22:39 +0000 |
commit | 6821da54f8de36af6f553e2f45c23c90abc7e31e (patch) | |
tree | 0e30581075cbb0106b516ea51c6ca0f00463dc8d /ext/imap | |
parent | a92788ddd914e328f5fccffc8f12aa2996d7d8dc (diff) | |
download | php-git-6821da54f8de36af6f553e2f45c23c90abc7e31e.tar.gz |
lets not make global functions unless we need to..actually this should be taken out someday
Diffstat (limited to 'ext/imap')
-rw-r--r-- | ext/imap/imap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/imap/imap.c b/ext/imap/imap.c index 13a768c45a..abb018b6c5 100644 --- a/ext/imap/imap.c +++ b/ext/imap/imap.c @@ -180,7 +180,7 @@ MAILSTREAM *mail_close_it (pils *imap_le_struct) return ret; } -inline int add_assoc_object(pval *arg, char *key, pval *tmp) +static int add_assoc_object(pval *arg, char *key, pval *tmp) { HashTable *symtable; |