comparison src/misc1.c @ 16606:7e733046db1d v8.1.1306

patch 8.1.1306: Borland support is outdated and doesn't work commit https://github.com/vim/vim/commit/eae1b91fea74842000fc055afc74fe2e7934c6ee Author: Bram Moolenaar <Bram@vim.org> Date: Thu May 9 15:12:55 2019 +0200 patch 8.1.1306: Borland support is outdated and doesn't work Problem: Borland support is outdated and doesn't work. Solution: Remove Borland support, there are other (free) compilers available. (Thomas Dziedzic, Ken Takata, closes #4364)
author Bram Moolenaar <Bram@vim.org>
date Thu, 09 May 2019 15:15:07 +0200
parents 5ef25fa57f71
children 30de89c1d090
comparison
equal deleted inserted replaced
16605:50115650f6c7 16606:7e733046db1d
5624 # if defined(MSWIN) 5624 # if defined(MSWIN)
5625 /* 5625 /*
5626 * File name expansion code for MS-DOS, Win16 and Win32. It's here because 5626 * File name expansion code for MS-DOS, Win16 and Win32. It's here because
5627 * it's shared between these systems. 5627 * it's shared between these systems.
5628 */ 5628 */
5629 # if defined(PROTO)
5630 # define _cdecl
5631 # else
5632 # ifdef __BORLANDC__
5633 # define _cdecl _RTLENTRYF
5634 # endif
5635 # endif
5636 5629
5637 /* 5630 /*
5638 * comparison function for qsort in dos_expandpath() 5631 * comparison function for qsort in dos_expandpath()
5639 */ 5632 */
5640 static int _cdecl 5633 static int
5641 pstrcmp(const void *a, const void *b) 5634 pstrcmp(const void *a, const void *b)
5642 { 5635 {
5643 return (pathcmp(*(char **)a, *(char **)b, -1)); 5636 return (pathcmp(*(char **)a, *(char **)b, -1));
5644 } 5637 }
5645 5638