]> granicus.if.org Git - php/commitdiff
vim folds and modelines
authorAnatol Belski <ab@php.net>
Tue, 4 Jul 2017 14:08:48 +0000 (16:08 +0200)
committerAnatol Belski <ab@php.net>
Tue, 4 Jul 2017 14:08:48 +0000 (16:08 +0200)
32 files changed:
win32/console.c
win32/console.h
win32/cp_enc_map_gen.c
win32/dllmain.c
win32/fnmatch.h
win32/ftok.c
win32/getrusage.h
win32/glob.h
win32/globals.c
win32/grp.h
win32/inet.h
win32/ipc.h
win32/nice.h
win32/param.h
win32/php_inttypes.h
win32/php_registry.h
win32/php_stdbool.h
win32/php_stdint.h
win32/php_win32_globals.h
win32/readdir.c
win32/readdir.h
win32/registry.c
win32/resource.h
win32/select.h
win32/sendmail.h
win32/signal.h
win32/sockets.h
win32/syslog.h
win32/time.c
win32/time.h
win32/unistd.h
win32/winutil.h

index 07e6afa9403736f529858f4a2b7f653f4f3a04db..c321a37023f2ac4575d5434d3cf485f7ed757ac0 100644 (file)
@@ -22,7 +22,7 @@
 
 
 PHP_WINUTIL_API BOOL php_win32_console_fileno_is_console(zend_long fileno)
-{
+{/*{{{*/
        BOOL result = FALSE;
        HANDLE handle = (HANDLE) _get_osfhandle(fileno);
 
@@ -33,10 +33,10 @@ PHP_WINUTIL_API BOOL php_win32_console_fileno_is_console(zend_long fileno)
                }
        }
        return result;
-}
+}/*}}}*/
 
 PHP_WINUTIL_API BOOL php_win32_console_fileno_has_vt100(zend_long fileno)
-{
+{/*{{{*/
        BOOL result = FALSE;
        HANDLE handle = (HANDLE) _get_osfhandle(fileno);
 
@@ -55,10 +55,10 @@ PHP_WINUTIL_API BOOL php_win32_console_fileno_has_vt100(zend_long fileno)
                }
        }
        return result;
-}
+}/*}}}*/
 
 PHP_WINUTIL_API BOOL php_win32_console_fileno_set_vt100(zend_long fileno, BOOL enable)
-{
+{/*{{{*/
        BOOL result = FALSE;
        HANDLE handle = (HANDLE) _get_osfhandle(fileno);
 
@@ -90,10 +90,10 @@ PHP_WINUTIL_API BOOL php_win32_console_fileno_set_vt100(zend_long fileno, BOOL e
                }
        }
        return result;
-}
+}/*}}}*/
 
 PHP_WINUTIL_API BOOL php_win32_console_is_own(void)
-{
+{/*{{{*/
        CONSOLE_SCREEN_BUFFER_INFO csbi;
 
        if (GetConsoleScreenBufferInfo(GetStdHandle(STD_OUTPUT_HANDLE), &csbi) && !IsDebuggerPresent()) {
@@ -101,5 +101,13 @@ PHP_WINUTIL_API BOOL php_win32_console_is_own(void)
        }
 
        return FALSE;
-}
+}/*}}}*/
 
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: sw=4 ts=4 fdm=marker
+ * vim<600: sw=4 ts=4
+ */
index ab62a6ba3517b86ea95fb698125d50036453f2d0..c2a73493756f7f9cd72dfcb08f66c51eeecf2970 100644 (file)
@@ -62,3 +62,12 @@ PHP_WINUTIL_API BOOL php_win32_console_fileno_set_vt100(zend_long fileno, BOOL e
 PHP_WINUTIL_API BOOL php_win32_console_is_own(void);
 
 #endif
+
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: sw=4 ts=4 fdm=marker
+ * vim<600: sw=4 ts=4
+ */
index e99ef75faafb62e926781d066f59e913adff6a9c..6cdb8fd88f4169d4929f6b5880f83f49c5206267 100644 (file)
@@ -248,3 +248,11 @@ main(int argc, char **argv)
        return 0;
 }
 
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: sw=4 ts=4 fdm=marker
+ * vim<600: sw=4 ts=4
+ */
index 1c34fb1b263b9d4791d90dc45473a074e001c8f1..64187050d5e58b483dbc4d6e90d41557122d0b8f 100644 (file)
@@ -87,3 +87,11 @@ BOOL WINAPI DllMain(HINSTANCE inst, DWORD reason, LPVOID dummy)
        return ret;
 }
 
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: sw=4 ts=4 fdm=marker
+ * vim<600: sw=4 ts=4
+ */
index a8e7d6612956915e957e4ea3769575366b5af0f1..83f64a0405af016682f7ed747955e37d76dd2ed2 100644 (file)
 PHPAPI int fnmatch(const char *pattern, const char *string, int flags);
 
 #endif /* !_FNMATCH_H_ */
+
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: sw=4 ts=4 fdm=marker
+ * vim<600: sw=4 ts=4
+ */
index 14431214f33fc4321a53a9cfadeb7dab7fb66413..dd68c2e24e8208a82c7cbc7c48bb21f23b7cbf11 100644 (file)
@@ -24,7 +24,7 @@
 
 PHP_WIN32_IPC_API key_t
 ftok(const char *pathname, int proj_id)
-{
+{/*{{{*/
        HANDLE fh;
        struct stat st;
        BY_HANDLE_FILE_INFORMATION bhfi;
@@ -48,5 +48,13 @@ ftok(const char *pathname, int proj_id)
        CloseHandle(fh);
 
        return ret;
-}
+}/*}}}*/
 
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: sw=4 ts=4 fdm=marker
+ * vim<600: sw=4 ts=4
+ */
index 43e2d474de42a36d1d3ca9fa3409f27d653b40b0..9f667ca36ccbd2ff383b5744cdb7f8b56a828948 100644 (file)
@@ -115,3 +115,11 @@ PHPAPI int getrusage(int who, struct rusage *usage);
 
 #endif
 
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: sw=4 ts=4 fdm=marker
+ * vim<600: sw=4 ts=4
+ */
index 81280ea64599924fcc3b93b97bcaa17961d701e7..1c10fc6773b99c983bd782d97c7a8ae07d6322f5 100644 (file)
@@ -101,3 +101,12 @@ PHPAPI int glob(const char *, int, int (*)(const char *, int), glob_t *);
 PHPAPI void    globfree(glob_t *);
 END_EXTERN_C()
 #endif /* !_GLOB_H_ */
+
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: sw=4 ts=4 fdm=marker
+ * vim<600: sw=4 ts=4
+ */
index 532908c706988bfec7109303d3a9e8b799fa90e3..b5f1b9430e1d02b6a07be88d5625cded2f840888 100644 (file)
@@ -29,17 +29,17 @@ php_win32_core_globals the_php_win32_core_globals;
 #endif
 
 void php_win32_core_globals_ctor(void *vg)
-{
+{/*{{{*/
        php_win32_core_globals *wg = (php_win32_core_globals*)vg;
        memset(wg, 0, sizeof(*wg));
 
        wg->mail_socket = INVALID_SOCKET;
 
        wg->log_source = INVALID_HANDLE_VALUE;
-}
+}/*}}}*/
 
 void php_win32_core_globals_dtor(void *vg)
-{
+{/*{{{*/
        php_win32_core_globals *wg = (php_win32_core_globals*)vg;
 
        if (wg->registry_key) {
@@ -60,11 +60,11 @@ void php_win32_core_globals_dtor(void *vg)
                closesocket(wg->mail_socket);
                wg->mail_socket = INVALID_SOCKET;
        }
-}
+}/*}}}*/
 
 
 PHP_RSHUTDOWN_FUNCTION(win32_core_globals)
-{
+{/*{{{*/
        php_win32_core_globals *wg =
 #ifdef ZTS
                ts_resource(php_win32_core_globals_id)
@@ -76,7 +76,7 @@ PHP_RSHUTDOWN_FUNCTION(win32_core_globals)
        closelog();
 
        return SUCCESS;
-}
+}/*}}}*/
 
 /*
  * Local variables:
index 11c3027bf322dd99d07c33a54e2e92954425c883..8a086a5bbf82fe7c31acfc593f57c9b56bd75a13 100644 (file)
@@ -24,3 +24,12 @@ struct group {
        int gr_gid;
        char **gr_mem;
 };
+
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: sw=4 ts=4 fdm=marker
+ * vim<600: sw=4 ts=4
+ */
index 74e10c489ef5c217daba7b50c066d40eda62db7e..f8b2704e0eff0f069243bfce241376260fbe8d37 100644 (file)
 #include <Winsock2.h>
 
 PHPAPI int inet_aton(const char *cp, struct in_addr *inp);
+
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: sw=4 ts=4 fdm=marker
+ * vim<600: sw=4 ts=4
+ */
index 4c699726a00e277321b0723780461dd2a1d7057a..65d93645cc67dfda306c3a98443ab666df57d480 100644 (file)
@@ -31,3 +31,12 @@ PHP_WIN32_IPC_API key_t ftok(const char *path, int id);
 
 
 #endif /* PHP_WIN32_IPC_H */
+
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: sw=4 ts=4 fdm=marker
+ * vim<600: sw=4 ts=4
+ */
index 3809139052ffaeed6d4d3eb702b58fb3f0d567d8..0c61f30ffff1e6332a45f7d927ce65eb3c286e9f 100644 (file)
@@ -23,3 +23,11 @@ PHPAPI int nice(zend_long);
 
 #endif
 
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: sw=4 ts=4 fdm=marker
+ * vim<600: sw=4 ts=4
+ */
index f312b03b189e05172fc2a8eb093a27a9f495773a..885a3b66a41456738c0ff2d6af9fd148606f6840 100644 (file)
 #define MAXHOSTNAMELEN 64
 #define howmany(x,y)   (((x)+((y)-1))/(y))
 #define roundup(x,y)   ((((x)+((y)-1))/(y))*(y))
+
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: sw=4 ts=4 fdm=marker
+ * vim<600: sw=4 ts=4
+ */
index 4130649cf26ae975555d1fc423359bc218c21da2..878d13fffbcad5082728d484a152af3fb7bdcc40 100644 (file)
@@ -312,3 +312,11 @@ imaxdiv_t __cdecl imaxdiv(intmax_t numer, intmax_t denom)
 #include <inttypes.h>
 #endif
 
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: sw=4 ts=4 fdm=marker
+ * vim<600: sw=4 ts=4
+ */
index 5feb3b35040b6c02f382a06ba445063085cf5b96..f0df0b15df0811d9b5ef6a714ac5b6a462714a31 100644 (file)
@@ -24,3 +24,12 @@ void UpdateIniFromRegistry(char *path);
 char *GetIniPathFromRegistry();
 
 #endif /* PHP_REGISTRY_H */
+
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: sw=4 ts=4 fdm=marker
+ * vim<600: sw=4 ts=4
+ */
index cc853c59c1fc7165bfc5b2a0313b46a7927e1ba6..5b73d985ae6b84fcb828ac1d817693739a4b8d82 100644 (file)
@@ -9,3 +9,12 @@
 #  define __bool_true_false_are_defined 1
 # endif
 #endif /* _STDBOOL_H */
+
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: sw=4 ts=4 fdm=marker
+ * vim<600: sw=4 ts=4
+ */
index e7615f147948109f7327b25ecb66442bc30e5019..bc936bf111e1ef32a393e96861456fa6957dc338 100644 (file)
@@ -263,3 +263,12 @@ static __inline int64_t llabs(int64_t i)
 #ifndef u_char
 typedef unsigned __int8   u_char;
 #endif
+
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: sw=4 ts=4 fdm=marker
+ * vim<600: sw=4 ts=4
+ */
index 80441f0ec235383ad68b5adc8bfc44dd32e4fdaf..b9d1e3fe0920d9378e5ad143aa1322de69690e72 100644 (file)
@@ -56,3 +56,11 @@ PHP_RSHUTDOWN_FUNCTION(win32_core_globals);
 
 #endif
 
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: sw=4 ts=4 fdm=marker
+ * vim<600: sw=4 ts=4
+ */
index 93ece88daeab1b106cf993ca8944f8c4a3c9ef3f..d11359e59422e19fcecb76a360079f6524c751dc 100644 (file)
@@ -25,7 +25,7 @@ extern "C" {
 #endif
 
 DIR *opendir(const char *dir)
-{
+{/*{{{*/
        DIR *dp;
        wchar_t *filespecw, *resolvedw;
        HANDLE handle;
@@ -82,10 +82,10 @@ DIR *opendir(const char *dir)
        free(resolvedw);
 
        return dp;
-}
+}/*}}}*/
 
 struct dirent *readdir(DIR *dp)
-{
+{/*{{{*/
        char *_tmp;
        size_t reclen;
 
@@ -115,10 +115,10 @@ struct dirent *readdir(DIR *dp)
        dp->dent.d_off = dp->offset;
 
        return &(dp->dent);
-}
+}/*}}}*/
 
 int readdir_r(DIR *dp, struct dirent *entry, struct dirent **result)
-{
+{/*{{{*/
        char *_tmp;
        size_t reclen;
 
@@ -156,10 +156,10 @@ int readdir_r(DIR *dp, struct dirent *entry, struct dirent **result)
        *result = &dp->dent;
 
        return 0;
-}
+}/*}}}*/
 
 int closedir(DIR *dp)
-{
+{/*{{{*/
        if (!dp)
                return 0;
        /* It is valid to scan an empty directory but we have an invalid
@@ -175,10 +175,10 @@ int closedir(DIR *dp)
                free(dp);
 
        return 0;
-}
+}/*}}}*/
 
 int rewinddir(DIR *dp)
-{
+{/*{{{*/
        /* Re-set to the beginning */
        wchar_t *filespecw;
        HANDLE handle;
@@ -209,7 +209,7 @@ int rewinddir(DIR *dp)
        dp->handle = handle;
 
        return 0;
-}
+}/*}}}*/
 
 #ifdef __cplusplus
 }
index aa485fb7f3e8135dea60b1756e964a56c55b60e7..0ed7b1d6404b591475e53bd0ca0196bb82d7eae8 100644 (file)
@@ -48,3 +48,12 @@ int rewinddir(DIR *);
 #endif
 
 #endif /* READDIR_H */
+
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: sw=4 ts=4 fdm=marker
+ * vim<600: sw=4 ts=4
+ */
index 5b6dc8f8aa58cfd1aa68b4e11f47540f8f0c1608..2a87fc9372079f4feb85277e73a974ebbb77b424 100644 (file)
@@ -41,7 +41,7 @@ static const char* registry_keys[] = {
 };
 
 static int OpenPhpRegistryKey(char* sub_key, HKEY *hKey)
-{
+{/*{{{*/
        const char **key_name = registry_keys;
 
        if (sub_key) {
@@ -73,10 +73,10 @@ static int OpenPhpRegistryKey(char* sub_key, HKEY *hKey)
                }
        }
        return 0;
-}
+}/*}}}*/
 
 static int LoadDirectory(HashTable *directories, HKEY key, char *path, int path_len, HashTable *parent_ht)
-{
+{/*{{{*/
        DWORD keys, values, max_key, max_name, max_value;
        int ret = 0;
        HashTable *ht = NULL;
@@ -168,19 +168,19 @@ static int LoadDirectory(HashTable *directories, HKEY key, char *path, int path_
                }
        }
        return ret;
-}
+}/*}}}*/
 
 static void delete_internal_hashtable(zval *zv)
-{
+{/*{{{*/
        HashTable *ht = (HashTable *)Z_PTR_P(zv);
        zend_hash_destroy(ht);
        free(ht);
-}
+}/*}}}*/
 
 #define RegNotifyFlags (REG_NOTIFY_CHANGE_NAME | REG_NOTIFY_CHANGE_ATTRIBUTES | REG_NOTIFY_CHANGE_LAST_SET)
 
 void UpdateIniFromRegistry(char *path)
-{
+{/*{{{*/
        char *p, *orig_path;
        int path_len;
 
@@ -277,12 +277,12 @@ void UpdateIniFromRegistry(char *path)
        }
 
        efree(orig_path);
-}
+}/*}}}*/
 
 #define PHPRC_REGISTRY_NAME "IniFilePath"
 
 char *GetIniPathFromRegistry()
-{
+{/*{{{*/
        char *reg_location = NULL;
        HKEY hKey;
 
@@ -298,7 +298,7 @@ char *GetIniPathFromRegistry()
                RegCloseKey(hKey);
        }
        return reg_location;
-}
+}/*}}}*/
 
 /*
  * Local variables:
index a7a11de7e4b7f856d6412772e3fe2c9f57ae01d2..ef17e01d1c821456fea5eb23aa53a632db99b94c 100644 (file)
 #define _APS_NEXT_SYMED_VALUE           101
 #endif
 #endif
+
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: sw=4 ts=4 fdm=marker
+ * vim<600: sw=4 ts=4
+ */
index ef91684363d13376b1b17ba1902e839dcdcd8e65..12504440555866763406b598abf63a7e68aee2f3 100644 (file)
 #include "php_network.h"
 
 PHPAPI int php_select(php_socket_t max_fd, fd_set *rfds, fd_set *wfds, fd_set *efds, struct timeval *tv);
+
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: noet sw=4 ts=4 fdm=marker
+ * vim<600: noet sw=4 ts=4
+ */
index bb502cb7ddcbe35d64eebd5daeea578e8d9fc484..47c89231cba592b336ba81e7c97b139c45994be5 100644 (file)
@@ -47,3 +47,12 @@ static int Ack(char **server_response);
 static unsigned long GetAddr(LPSTR szHost);
 static int FormatEmailAddress(char* Buf, char* EmailAddress, char* FormatString);
 #endif                                                 /* sendmail_h */
+
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: sw=4 ts=4 fdm=marker
+ * vim<600: sw=4 ts=4
+ */
index ec739527ac146c2022b61e639a2a9a08810519c7..dd8c1091ccc741bcf6513df6fa41051a311c3479 100644 (file)
@@ -8,3 +8,12 @@
 #define        SIGPROF 27                              /* profiling time alarm */
 
 #endif /* PHP_WIN32_SIGNAL_H */
+
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: sw=4 ts=4 fdm=marker
+ * vim<600: sw=4 ts=4
+ */
index f8ede714a639ed15b640337fbff7a002378c9987..4c1237ce8b69f134c10ea0ad68fba23734e0084d 100644 (file)
 /* Code originally from ext/sockets */
 
 PHPAPI int socketpair(int domain, int type, int protocol, SOCKET sock[2]);
+
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: sw=4 ts=4 fdm=marker
+ * vim<600: sw=4 ts=4
+ */
index 56cae51e98324a721e47cf1ea5036e6e78b5f647..104c4b75ff3cf45d89cdc07d568c7f5985765499 100644 (file)
@@ -76,3 +76,12 @@ extern void syslog(int, const char *, ...);
 
 
 #endif                                                 /* SYSLOG_H */
+
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: sw=4 ts=4 fdm=marker
+ * vim<600: sw=4 ts=4
+ */
index a0ed1b344ec08b177472dc99c267d8987f2d0092..58f4230c50570e4c17355e65c087cab05438fc95 100644 (file)
@@ -31,7 +31,7 @@ static MyGetSystemTimeAsFileTime timefunc = NULL;
 
 #ifdef PHP_EXPORTS
 static zend_always_inline MyGetSystemTimeAsFileTime get_time_func(void)
-{
+{/*{{{*/
        MyGetSystemTimeAsFileTime timefunc = NULL;
        HMODULE hMod = GetModuleHandle("kernel32.dll");
 
@@ -49,16 +49,16 @@ static zend_always_inline MyGetSystemTimeAsFileTime get_time_func(void)
        }
 
        return timefunc;
-}
+}/*}}}*/
 
 void php_win32_init_gettimeofday(void)
-{
+{/*{{{*/
        timefunc = get_time_func();
-}
+}/*}}}*/
 #endif
 
 static zend_always_inline int getfilesystemtime(struct timeval *tv)
-{
+{/*{{{*/
        FILETIME ft;
        unsigned __int64 ff = 0;
        ULARGE_INTEGER fft;
@@ -81,10 +81,10 @@ static zend_always_inline int getfilesystemtime(struct timeval *tv)
        tv->tv_usec = (long)(ff % 1000000Ui64);
 
        return 0;
-}
+}/*}}}*/
 
 PHPAPI int gettimeofday(struct timeval *time_Info, struct timezone *timezone_Info)
-{
+{/*{{{*/
        /* Get the time, if they want it */
        if (time_Info != NULL) {
                getfilesystemtime(time_Info);
@@ -97,10 +97,10 @@ PHPAPI int gettimeofday(struct timeval *time_Info, struct timezone *timezone_Inf
        }
        /* And return */
        return 0;
-}
+}/*}}}*/
 
 PHPAPI int usleep(unsigned int useconds)
-{
+{/*{{{*/
        HANDLE timer;
        LARGE_INTEGER due;
 
@@ -111,17 +111,17 @@ PHPAPI int usleep(unsigned int useconds)
        WaitForSingleObject(timer, INFINITE);
        CloseHandle(timer);
        return 0;
-}
+}/*}}}*/
 
 PHPAPI int nanosleep( const struct timespec * rqtp, struct timespec * rmtp )
-{
+{/*{{{*/
        if (rqtp->tv_nsec > 999999999) {
                /* The time interval specified 1,000,000 or more microseconds. */
                errno = EINVAL;
                return -1;
        }
        return usleep( rqtp->tv_sec * 1000000 + rqtp->tv_nsec / 1000  );
-}
+}/*}}}*/
 
 /*
  * Local variables:
index f21a9bd4048815d01f5edff227ad38616f77110a..4fe00bc21e47137c35bc633fe7d37ba4530d4eec 100644 (file)
@@ -61,3 +61,12 @@ void php_win32_init_gettimeofday(void);
 #endif
 
 #endif
+
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: sw=4 ts=4 fdm=marker
+ * vim<600: sw=4 ts=4
+ */
index 0b9446149c59a13657900f5f6b5335d84aab54a0..3d95ea06c74414f304abcb5c19b32d66f56efa93 100644 (file)
@@ -2,3 +2,12 @@
 #define _PHP_WIN32_UNISTD_H
 PHPAPI int usleep(unsigned int useconds);
 #endif
+
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: sw=4 ts=4 fdm=marker
+ * vim<600: sw=4 ts=4
+ */
index ebd57f10a69e511d4f5f45dff1bdc005a3da1d23..364c9bc2cb1b0d0955eaa8244e99360b61fdb81d 100644 (file)
@@ -50,3 +50,11 @@ PHP_WINUTIL_API int php_win32_code_to_errno(unsigned long w32Err);
 
 PHP_WINUTIL_API char *php_win32_get_username(void);
 
+/*
+ * Local variables:
+ * tab-width: 4
+ * c-basic-offset: 4
+ * End:
+ * vim600: sw=4 ts=4 fdm=marker
+ * vim<600: sw=4 ts=4
+ */