summaryrefslogtreecommitdiff
path: root/main/mergesort.c
Commit message (Collapse)AuthorAgeFilesLines
* Remove local variablesPeter Kokot2019-02-031-9/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch removes the so called local variables defined per file basis for certain editors to properly show tab width, and similar settings. These are mainly used by Vim and Emacs editors yet with recent changes the once working definitions don't work anymore in Vim without custom plugins or additional configuration. Neither are these settings synced across the PHP code base. A simpler and better approach is EditorConfig and fixing code using some code style fixing tools in the future instead. This patch also removes the so called modelines for Vim. Modelines allow Vim editor specifically to set some editor configuration such as syntax highlighting, indentation style and tab width to be set in the first line or the last 5 lines per file basis. Since the php test files have syntax highlighting already set in most editors properly and EditorConfig takes care of the indentation settings, this patch removes these as well for the Vim 6.0 and newer versions. With the removal of local variables for certain editors such as Emacs and Vim, the footer is also probably not needed anymore when creating extensions using ext_skel.php script. Additionally, Vim modelines for setting php syntax and some editor settings has been removed from some *.phpt files. All these are mostly not relevant for phpt files neither work properly in the middle of the file.
* Remove unused Git attributes identPeter Kokot2018-07-251-2/+0
| | | | | | | | | | | | | | | The $Id$ keywords were used in Subversion where they can be substituted with filename, last revision number change, last changed date, and last user who changed it. In Git this functionality is different and can be done with Git attribute ident. These need to be defined manually for each file in the .gitattributes file and are afterwards replaced with 40-character hexadecimal blob object name which is based only on the particular file contents. This patch simplifies handling of $Id$ keywords by removing them since they are not used anymore.
* first shot remove TSRMLS_* thingsAnatol Belski2014-12-131-20/+20
|
* fix datatype mismatchesAnatol Belski2014-10-271-4/+4
|
* - Cleanup exports and allow to overwrite ext registrationMarcus Boerger2008-08-221-1/+1
|
* removed unwanted NetWare specific changesAnantha Kesari H Y2004-09-231-5/+0
|
* ws fixes + missing $Id$ tags, headers addedfoobar2003-02-191-0/+2
|
* A add much more useful select(2) implementation than is provided byWez Furlong2003-02-161-1/+1
| | | | | | | | | | | | | windows sockets. The winsock implementation will only work with sockets; our implementation works with sockets and file descriptors. By association, stream_select() will now operate correctly with files, pipes and sockets. This change required linking against the winsock2 library. In terms of compatibility, only older versions of windows 95 do not have winsock2 installed by default. It is available as a redistributable file, and is most likely installed by any OS patches (eg: Internet Explorer) applied by the user. Also, add a win32 compatible pipe test when opening a stream from a pipe. This test will only work on NT, win2k and XP platforms. Without this test, interleaved fread() and select() calls would cause the read buffer to be clobbered. I will be working on a fix for this issue for win9x.
* NetWare related changes/modificationsAnantha Kesari H Y2002-09-091-0/+5
|
* Merge in qsort changesSterling Hughes2001-09-171-22/+22
|
* - Don't wrap lines... this is annoying while coding.Derick Rethans2001-09-091-2/+2
|
* Fix folding and clean up some extensionsRasmus Lerdorf2001-06-061-4/+8
|
* vim-6 does folding - clean up a bunch of missing folding tags plusRasmus Lerdorf2001-06-051-0/+8
| | | | | some misguided RINIT and RSHUTDOWN calls in a few fringe extensions
* Namespace protect mergesort (caused conflict on Darwin).Sascha Schumann2000-11-021-1/+1
|
* Fine tune Andi's patchZeev Suraski2000-02-111-1/+1
|
* - Introduce PHP_WIN32Andi Gutmans2000-02-101-1/+1
|
* Fix some warningsSascha Schumann1999-12-051-0/+2
|
* - Win32 fixesZeev Suraski1999-11-061-19/+7
| | | | | - COM module improvements from Boris Wedl
* - Get windows version to compile again. No biggy if array_map is not #if 0'dAndi Gutmans1999-10-161-0/+4
| | | | | out even if it doesn't work.
* Added mergesort.c from FreeBSD.Andrei Zmievski1999-10-151-0/+350