view src/protodef.h @ 23831:7c257af6ccf5 v8.2.2457

patch 8.2.2457: Coverity warns for memory leak Commit: https://github.com/vim/vim/commit/4dba04256b8a49b201d685217d3d7abc4988f090 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Feb 3 19:35:13 2021 +0100 patch 8.2.2457: Coverity warns for memory leak Problem: Coverity warns for memory leak. Solution: Free memory when out of memory.
author Bram Moolenaar <Bram@vim.org>
date Wed, 03 Feb 2021 19:45:05 +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