view src/protodef.h @ 19356:f559be3c53d7 v8.2.0236

patch 8.2.0236: MS-Windows unintall doesn't delete vimtutur.bat Commit: https://github.com/vim/vim/commit/57ea2924e5dd14aac716a1ee349bdb61f6429f59 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Feb 9 14:27:20 2020 +0100 patch 8.2.0236: MS-Windows unintall doesn't delete vimtutur.bat Problem: MS-Windows unintall doesn't delete vimtutur.bat. Solution: Change directory before deletion. (Ken Takata, closes https://github.com/vim/vim/issues/5603)
author Bram Moolenaar <Bram@vim.org>
date Sun, 09 Feb 2020 14:30:09 +0100
parents 3e9b24eac417
children
line wrap: on
line source

/* vi:set ts=8 sts=4 sw=4 noet:
 *
 * VIM - Vi IMproved	by Bram Moolenaar
 *
 * Do ":help uganda"  in Vim to read copying and usage conditions.
 * Do ":help credits" in Vim to see a list of people who contributed.
 */

#ifdef PROTO
// cproto runs into trouble when these types are missing
typedef double _Float16;
typedef double _Float32;
typedef double _Float64;
typedef double _Float128;
typedef double _Float32x;
typedef double _Float64x;
#endif