Add a comment indicating that this return statement will never be reached.

# Perhaps it should just be removed?
This commit is contained in:
Jon Parise 2002-01-27 07:15:07 +00:00
parent 539114339c
commit d299bdc5d9

View File

@ -173,7 +173,8 @@ PHPAPI int php_mail(char *to, char *subject, char *message, char *headers, char
php_error(E_WARNING, "Could not execute mail delivery program");
return 0;
}
return 1;
return 1; /* never reached */
}
/* }}} */