diff options
author | Hannes Magnusson <bjori@php.net> | 2011-09-07 13:46:45 +0000 |
---|---|---|
committer | Hannes Magnusson <bjori@php.net> | 2011-09-07 13:46:45 +0000 |
commit | a078c05513a2973ce4751d2fa66465723f4c641f (patch) | |
tree | bcbdb9fc8368a8262e4a35cf462fb30580212348 /ext/standard/dl.c | |
parent | bea25b5e553147b39d9372be2d95c6a240b3dd6d (diff) | |
download | php-git-a078c05513a2973ce4751d2fa66465723f4c641f.tar.gz |
Fix folding
Diffstat (limited to 'ext/standard/dl.c')
-rw-r--r-- | ext/standard/dl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/dl.c b/ext/standard/dl.c index b59cf58567..80dae99e9b 100644 --- a/ext/standard/dl.c +++ b/ext/standard/dl.c @@ -97,9 +97,9 @@ PHPAPI PHP_FUNCTION(dl) #define USING_ZTS 0 #endif -/* {{{ php_dl +/* {{{ php_load_extension */ -PHPAPI int php_load_extension(char *filename, int type, int start_now TSRMLS_DC) /* {{{ */ +PHPAPI int php_load_extension(char *filename, int type, int start_now TSRMLS_DC) { void *handle; char *libpath; |