From 84a3e2e1fefd767424cfc27aa9d1a136420b8ae4 Mon Sep 17 00:00:00 2001 From: Jan Nieuwenhuizen Date: Mon, 23 Jul 2018 19:13:40 +0200 Subject: [PATCH] Add taken-from-Binutils and copyright line to alloca.c * lib/stdlib/alloca.c: Add `taken from binutils' and copyright line to alloca.c for minor changes. --- lib/stdlib/alloca.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/stdlib/alloca.c b/lib/stdlib/alloca.c index 53dbdc8a..dee539d7 100644 --- a/lib/stdlib/alloca.c +++ b/lib/stdlib/alloca.c @@ -1,6 +1,10 @@ /* alloca.c -- allocate automatically reclaimed memory (Mostly) portable public-domain implementation -- D A Gwyn + Taken from GNU binutils 2.10.1. + Minor changes + Copyright © 2018 Jan (janneke) Nieuwenhuizen + This implementation of the PWB library alloca function, which is used to allocate space off the run-time stack so that it is automatically reclaimed upon procedure exit,