Skip to content

Commit

Permalink
- Fix #52908, fix declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
pierrejoye committed Oct 4, 2010
1 parent cbbd9e8 commit 8c0682f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TSRM/tsrm_virtual_cwd.h
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ typedef unsigned short mode_t;
CWD_API int php_sys_stat_ex(const char *path, struct stat *buf, int lstat);
# define php_sys_stat(path, buf) php_sys_stat_ex(path, buf, 0)
# define php_sys_lstat(path, buf) php_sys_stat_ex(path, buf, 1)
CWD_API int php_sys_readlink(link, target, target_len);
CWD_API int php_sys_readlink(const char *link, char *target, size_t target_len);
#else
# define php_sys_stat stat
# define php_sys_lstat lstat
Expand Down

0 comments on commit 8c0682f

Please sign in to comment.