view src/protodef.h @ 16407:cbb6e28af4cb v8.1.1208

patch 8.1.1208: links to repository use wrong file name commit https://github.com/vim/vim/commit/c8cc0ad477c1921afb11080fb96c764369cf04b8 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Apr 26 21:31:38 2019 +0200 patch 8.1.1208: links to repository use wrong file name Problem: Links to repository use wrong file name. Solution: Swap the file names. (Nahuel Ourthe, closes https://github.com/vim/vim/issues/4304)
author Bram Moolenaar <Bram@vim.org>
date Fri, 26 Apr 2019 21:45:07 +0200
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