Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > gnu.bash.bug > #15039
| Path | csiph.com!3.us.feeder.erje.net!feeder.erje.net!news.linkpendium.com!news.linkpendium.com!panix!usenet.stanford.edu!not-for-mail |
|---|---|
| From | Eduardo A. Bustamante López <dualbus@gmail.com> |
| Newsgroups | gnu.bash.bug |
| Subject | [PATCH 1/3] Fix implicit declaration of abort() |
| Date | Fri, 4 Jan 2019 12:25:40 -0800 |
| Lines | 26 |
| Approved | bug-bash@gnu.org |
| Message-ID | <mailman.6774.1546633580.1284.bug-bash@gnu.org> (permalink) |
| NNTP-Posting-Host | lists.gnu.org |
| Mime-Version | 1.0 |
| Content-Type | text/plain; charset=UTF-8 |
| Content-Transfer-Encoding | 8bit |
| X-Trace | usenet.stanford.edu 1546633580 18513 208.118.235.17 (4 Jan 2019 20:26:20 GMT) |
| X-Complaints-To | action@cs.stanford.edu |
| Cc | Eduardo A. Bustamante López <dualbus@gmail.com> |
| To | bug-bash@gnu.org |
| Envelope-to | bug-bash@gnu.org |
| DKIM-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=vYyNYgY3Ugk3tQxplZ/KrqubOu4sCW9ifVV2DAdjSdM=; b=Gy3EDC8c+tf+4B2YrmR8SeecDgS7x6ZiQ5IH16hpxb/ZYneYJdVM8I+UBK5VgIkgpR TT1qYR88U2ike6BgQ/AQ7phJWigix3vsxAmQMin3NEfbqMojxry1sI7+DYJeWy6BNYRZ jfzRo6OYhtV1JBCCrLSt3mQqgWidpjW1r1WJFqQ6F2OeFitqtGs3U0KivEu2BtCSadwn HqOxIGRLMQAZ0tkL92TNVYOssd6Nzc94hS9VlImW5Sq6Uez3Xhg7smt/VmWrIQn3HJJH ERlXTPE0F9JLowRLUnRtzLWAdF7LNK91YCQVfOx/M2FiUSaks//JSnBrBhGPyu+TVUVT dk9A== |
| X-Google-DKIM-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=vYyNYgY3Ugk3tQxplZ/KrqubOu4sCW9ifVV2DAdjSdM=; b=m0ybYidPd4aMtRfSRc/AgkkpSoFSiYdjXOkHyYD0uS1Gd3/IXTEUF3oQwHn/IfkD06 D8JW5+klejN0fTosYrQYdYdz+bb2gYL8jzY7ygmgx2MoDqwdq8hEQpBlDn4ezy81jD6R KJ2NP4MsgtD9XeynAzQsn//n0RTX11VLuW9exPPDuiNFtBkOcDrMHt9mcLx257EjqT81 AFAwrXLFJkTKQ6Pna5uy5wy8D7V5jQCrWrc7tiCBqfihLVHbHkLJ5Kfwuds4SGdb0hFn c1m3AWwOyVNkin7GYcuRx7rc7Ht5yEwBLelMP6Y5HlMlyQLsNd41s+6PCSdyb4jQX15S w9lg== |
| X-Gm-Message-State | AJcUukflBzPkURRsVVpafOpnMDYCmhPdnFwozgJvmFQWu/P4RrM3cKyi Sac2sVs2zMeaNYKrRoB2chzFEQmL |
| X-Google-Smtp-Source | ALg8bN5asHXVpUa2Vj42xzayWMm0IMGfPAfkbrL7MGhhXRRiQVW7U2QfY1fbRfeCY1bX8vGcUEiyFw== |
| X-Received | by 2002:a17:902:e002:: with SMTP id ca2mr52986764plb.103.1546633570330; Fri, 04 Jan 2019 12:26:10 -0800 (PST) |
| X-Mailer | git-send-email 2.20.1 |
| X-detected-operating-system | by eggs.gnu.org: Genre and OS details not recognized. |
| X-Received-From | 2607:f8b0:4864:20::631 |
| X-BeenThere | bug-bash@gnu.org |
| X-Mailman-Version | 2.1.21 |
| Precedence | list |
| List-Id | Bug reports for the GNU Bourne Again SHell <bug-bash.gnu.org> |
| List-Unsubscribe | <https://lists.gnu.org/mailman/options/bug-bash>, <mailto:bug-bash-request@gnu.org?subject=unsubscribe> |
| List-Archive | <http://lists.gnu.org/archive/html/bug-bash/> |
| List-Post | <mailto:bug-bash@gnu.org> |
| List-Help | <mailto:bug-bash-request@gnu.org?subject=help> |
| List-Subscribe | <https://lists.gnu.org/mailman/listinfo/bug-bash>, <mailto:bug-bash-request@gnu.org?subject=subscribe> |
| Xref | csiph.com gnu.bash.bug:15039 |
Show key headers only | View raw
gcc version 8.2.0 (Debian 8.2.0-13) x86_64-linux-gnu ``` malloc.c:333:3: warning: incompatible implicit declaration of built-in function ‘abort’ malloc.c:333:3: note: include ‘<stdlib.h>’ or provide a declaration of ‘abort’ ``` --- lib/malloc/malloc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/malloc/malloc.c b/lib/malloc/malloc.c index 5621adf4..8f641036 100644 --- a/lib/malloc/malloc.c +++ b/lib/malloc/malloc.c @@ -83,6 +83,7 @@ #endif #include <errno.h> #include <stdio.h> +#include <stdlib.h> #if defined (HAVE_MMAP) #include <sys/mman.h> -- 2.20.1
Back to gnu.bash.bug | Previous | Next | Find similar | Unroll thread
[PATCH 1/3] Fix implicit declaration of abort() Eduardo A. Bustamante López <dualbus@gmail.com> - 2019-01-04 12:25 -0800
csiph-web