summaryrefslogtreecommitdiff
path: root/main/php_getopt.h
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2020-01-27 13:32:29 +0100
committerNikita Popov <nikita.ppv@gmail.com>2020-01-27 13:32:38 +0100
commit1cccbb8ff1339c44075e7dee8613d98dc8056f68 (patch)
tree3eb848778ca364b6a819b684b4ee6c694ef693c1 /main/php_getopt.h
parent41e1891e0c2c4d9c3827d8e95dff735eee38268d (diff)
parentfd08f062ae5a3c92bfc0345da7e83ab320046864 (diff)
downloadphp-git-1cccbb8ff1339c44075e7dee8613d98dc8056f68.tar.gz
Merge branch 'PHP-7.3' into PHP-7.4
* PHP-7.3: Fix bug #78323: Code 0 is returned on invalid options
Diffstat (limited to 'main/php_getopt.h')
-rw-r--r--main/php_getopt.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/main/php_getopt.h b/main/php_getopt.h
index 20746517d4..c368aa7fa9 100644
--- a/main/php_getopt.h
+++ b/main/php_getopt.h
@@ -35,4 +35,7 @@ extern PHPAPI int php_optidx;
PHPAPI int php_getopt(int argc, char* const *argv, const opt_struct opts[], char **optarg, int *optind, int show_err, int arg_start);
END_EXTERN_C()
+/* php_getopt will return this value if there is an error in arguments */
+#define PHP_GETOPT_INVALID_ARG (-2)
+
#endif