view src/protodef.h @ 30055:0acf2a20c357 v9.0.0365

patch 9.0.0365: file name used in test is unusual Commit: https://github.com/vim/vim/commit/91a874eb88eff2df9b8fdd64ccf98eed337823cf Author: Dominique Pelle <dominique.pelle@gmail.com> Date: Sat Sep 3 10:59:32 2022 +0100 patch 9.0.0365: file name used in test is unusual Problem: File name used in test is unusual. Solution: Rename it. (Dominique Pell?, closes https://github.com/vim/vim/issues/11044)
author Bram Moolenaar <Bram@vim.org>
date Sat, 03 Sep 2022 12:00:06 +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