]> granicus.if.org Git - php/commitdiff
Remove 'proto' from internal functions
authorZeev Suraski <zeev@php.net>
Thu, 7 Aug 2003 16:44:11 +0000 (16:44 +0000)
committerZeev Suraski <zeev@php.net>
Thu, 7 Aug 2003 16:44:11 +0000 (16:44 +0000)
ext/domxml/php_domxml.c
ext/snmp/snmp.c

index 22d146d0fbfa7e898ff4d266bb10f3aba7e5014f..1a17c6333713c5d5e58799622b2691d2017c1f32 100644 (file)
@@ -4716,9 +4716,7 @@ static int node_namespace(zval **attributes, xmlNode *nodep TSRMLS_DC)
 /* }}} */
 #endif
 
-/* We don't have a type zval. **attributes is also very unusual. */
-
-/* {{{ proto int node_attributes(zval **attributes, int node)
+/* {{{ int node_attributes(zval **attributes, int node)
    Returns list of children nodes */
 static int node_attributes(zval **attributes, xmlNode *nodep TSRMLS_DC)
 {
index 60e1c9e6718fd773fd1f67df06cc50440097b8b9..d5051dc1c6069fda7dd1e7396d04ff82bb15d481 100644 (file)
@@ -703,7 +703,7 @@ PHP_FUNCTION(snmpset)
 }
 /* }}} */
 
-/* {{{ proto int netsnmp_session_set_sec_name(struct snmp_session *s, char *name)
+/* {{{ int netsnmp_session_set_sec_name(struct snmp_session *s, char *name)
    Set the security name in the snmpv3 session */
 static int netsnmp_session_set_sec_name(struct snmp_session *s, char *name)
 {
@@ -716,7 +716,7 @@ static int netsnmp_session_set_sec_name(struct snmp_session *s, char *name)
 }
 /* }}} */
 
-/* {{{ proto int netsnmp_session_set_sec_level(struct snmp_session *s, char *level)
+/* {{{ int netsnmp_session_set_sec_level(struct snmp_session *s, char *level)
    Set the security level in the snmpv3 session */
 static int netsnmp_session_set_sec_level(struct snmp_session *s, char *level TSRMLS_DC)
 {
@@ -737,7 +737,7 @@ static int netsnmp_session_set_sec_level(struct snmp_session *s, char *level TSR
 }
 /* }}} */
 
-/* {{{ proto int netsnmp_session_set_auth_protocol(struct snmp_session *s, char *prot)
+/* {{{ int netsnmp_session_set_auth_protocol(struct snmp_session *s, char *prot)
    Set the authentication protocol in the snmpv3 session */
 static int netsnmp_session_set_auth_protocol(struct snmp_session *s, char *prot TSRMLS_DC)
 {
@@ -758,7 +758,7 @@ static int netsnmp_session_set_auth_protocol(struct snmp_session *s, char *prot
 }
 /* }}} */
 
-/* {{{ proto int netsnmp_session_set_sec_protocol(struct snmp_session *s, char *prot)
+/* {{{ int netsnmp_session_set_sec_protocol(struct snmp_session *s, char *prot)
    Set the security protocol in the snmpv3 session */
 static int netsnmp_session_set_sec_protocol(struct snmp_session *s, char *prot TSRMLS_DC)
 {
@@ -789,7 +789,7 @@ static int netsnmp_session_set_sec_protocol(struct snmp_session *s, char *prot T
 }
 /* }}} */
 
-/* {{{ proto int netsnmp_session_gen_auth_key(struct snmp_session *s, char *pass)
+/* {{{ int netsnmp_session_gen_auth_key(struct snmp_session *s, char *pass)
    Make key from pass phrase in the snmpv3 session */
 static int netsnmp_session_gen_auth_key(struct snmp_session *s, char *pass TSRMLS_DC)
 {
@@ -821,7 +821,7 @@ static int netsnmp_session_gen_auth_key(struct snmp_session *s, char *pass TSRML
 }
 /* }}} */
 
-/* {{{ proto int netsnmp_session_gen_sec_key(struct snmp_session *s, u_char *pass)
+/* {{{ int netsnmp_session_gen_sec_key(struct snmp_session *s, u_char *pass)
    Make key from pass phrase in the snmpv3 session */
 static int netsnmp_session_gen_sec_key(struct snmp_session *s, u_char *pass TSRMLS_DC)
 {