1
0
mirror of https://github.com/php/php-src.git synced 2026-04-29 11:13:36 +02:00

minor AIX fix

This commit is contained in:
Antony Dovgal
2006-10-04 13:24:06 +00:00
parent 6924d8b2dc
commit 49472b31d2
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1033,7 +1033,7 @@ CWD_API FILE *virtual_popen(const char *command, const char *type TSRMLS_DC)
* realpath() function.
*/
#if defined(__osf__) || defined(_AIX)
char *php_realpath_hack(char *src, char *dest)
char *php_realpath_hack(const char *src, char *dest)
{
char *ret;
+1 -1
View File
@@ -190,7 +190,7 @@ CWD_API int virtual_access(const char *pathname, int mode TSRMLS_DC);
#endif
#if defined(__osf__) || defined(_AIX)
char *php_realpath_hack(char *src, char *dest);
char *php_realpath_hack(const char *src, char *dest);
#endif
#if HAVE_UTIME