summaryrefslogtreecommitdiff
path: root/main/php.h
diff options
context:
space:
mode:
authorRasmus Lerdorf <rasmus@php.net>1999-09-04 22:06:12 +0000
committerRasmus Lerdorf <rasmus@php.net>1999-09-04 22:06:12 +0000
commit54ec3a8e2f92000d2acab94cdbccb75b798d5f8f (patch)
tree0b80cf1e3f8fcd2904ec866049743aca55217a68 /main/php.h
parent7d332151241e5999d3a1a0fd6b748d0e2448f7eb (diff)
downloadphp-git-54ec3a8e2f92000d2acab94cdbccb75b798d5f8f.tar.gz
Cleanups
What the heck was that dangling (c) for in the PUTC macros? Were they supposed to serve some sort of purpose, because I sure don't see one for them.
Diffstat (limited to 'main/php.h')
-rw-r--r--main/php.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/php.h b/main/php.h
index 9bc697dd5b..36e8e66bf9 100644
--- a/main/php.h
+++ b/main/php.h
@@ -314,10 +314,10 @@ PHPAPI int cfg_get_string(char *varname, char **result);
#include "output.h"
#define PHPWRITE(str, str_len) zend_body_write((str), (str_len))
#define PUTS(str) zend_body_write((str), strlen((str)))
-#define PUTC(c) zend_body_write(&(c), 1), (c)
+#define PUTC(c) zend_body_write(&(c), 1)
#define PHPWRITE_H(str, str_len) zend_header_write((str), (str_len))
#define PUTS_H(str) zend_header_write((str), strlen((str)))
-#define PUTC_H(c) zend_header_write(&(c), 1), (c)
+#define PUTC_H(c) zend_header_write(&(c), 1)
#include "zend_operators.h"