Skip to content

Commit e0f6e3d

Browse files
committed
ext/standard/info.c: Make some functions static
1 parent 5078eb0 commit e0f6e3d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/standard/info.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ PHPAPI ZEND_COLD void ZEND_COLD php_info_print_style(void)
250250
#ifdef PHP_WIN32
251251
/* {{{ */
252252

253-
char* php_get_windows_name()
253+
static char* php_get_windows_name()
254254
{
255255
OSVERSIONINFOEX osvi = EG(windows_version_info);
256256
SYSTEM_INFO si;
@@ -611,7 +611,7 @@ char* php_get_windows_name()
611611
/* }}} */
612612

613613
/* {{{ */
614-
void php_get_windows_cpu(char *buf, size_t bufsize)
614+
static void php_get_windows_cpu(char *buf, size_t bufsize)
615615
{
616616
SYSTEM_INFO SysInfo;
617617
GetSystemInfo(&SysInfo);

0 commit comments

Comments
 (0)