view src/protodef.h @ 24063:d8f3a993dc9a v8.2.2573

patch 8.2.2573: Vim9: using inalid pointer for error message Commit: https://github.com/vim/vim/commit/a974953443775dd938cf9a8c195e3de9e4514f4f Author: Bram Moolenaar <Bram@vim.org> Date: Sat Mar 6 18:18:19 2021 +0100 patch 8.2.2573: Vim9: using inalid pointer for error message Problem: Vim9: using inalid pointer for error message. Solution: Use the right pointer. (closes https://github.com/vim/vim/issues/7921)
author Bram Moolenaar <Bram@vim.org>
date Sat, 06 Mar 2021 18:30:02 +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