From aca3b1636a184ea90ae7ce821343053e3ba88a8d Mon Sep 17 00:00:00 2001 From: Geza Lore Date: Thu, 13 Mar 2025 14:43:35 +0000 Subject: [PATCH] Remove unused gtkwave/wavealloca.h --- include/gtkwave/wavealloca.h | 41 ------------------------------------ 1 file changed, 41 deletions(-) delete mode 100644 include/gtkwave/wavealloca.h diff --git a/include/gtkwave/wavealloca.h b/include/gtkwave/wavealloca.h deleted file mode 100644 index 8fa7d8090..000000000 --- a/include/gtkwave/wavealloca.h +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Copyright (c) 1999 Tony Bybell. - * - * Permission is hereby granted, free of charge, to any person obtaining a - * copy of this software and associated documentation files (the "Software"), - * to deal in the Software without restriction, including without limitation - * the rights to use, copy, modify, merge, publish, distribute, sublicense, - * and/or sell copies of the Software, and to permit persons to whom the - * Software is furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL - * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER - * DEALINGS IN THE SOFTWARE. - * - * SPDX-License-Identifier: MIT - */ - -#ifndef WAVE_ALLOCA_H -#define WAVE_ALLOCA_H -#include -#ifdef HAVE_ALLOCA_H -#include -#elif defined(__GNUC__) -#ifndef __MINGW32__ -#ifndef alloca -#define alloca __builtin_alloca -#endif -#else -#include -#endif -#endif -#define wave_alloca alloca -#endif -