diff options
author | Andy Wingo <wingo@pobox.com> | 2018-06-17 19:46:33 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2018-06-17 19:46:33 +0200 |
commit | 68d9780ce424cd8d603af5972448cd35fae1c905 (patch) | |
tree | d764db1009c552c62436d7c493b941aa79741f98 /libguile/strings.c | |
parent | 5c511be7b6fd2d497a5c7c903827f08ba0d259ea (diff) | |
download | guile-68d9780ce424cd8d603af5972448cd35fae1c905.tar.gz |
Remove errno.h include from _scm.h.
* libguile/_scm.h: Remove errno.h include.
* libguile/bytevectors.c:
* libguile/debug.c:
* libguile/finalizers.c:
* libguile/loader.c:
* libguile/poll.c:
* libguile/strings.c:
* libguile/threads.c:
* libguile/vm.c: Add errno.h include. Sort includes as needed.
Diffstat (limited to 'libguile/strings.c')
-rw-r--r-- | libguile/strings.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libguile/strings.c b/libguile/strings.c index 5c49e33d8..5c87d3f81 100644 --- a/libguile/strings.c +++ b/libguile/strings.c @@ -1,5 +1,5 @@ -/* Copyright (C) 1995, 1996, 1998, 2000, 2001, 2004, 2006, - * 2008-2016 Free Software Foundation, Inc. +/* Copyright (C) 1995-1996,1998,2000-2001,2004,2006,2008-2016,2018 + * Free Software Foundation, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License @@ -27,6 +27,7 @@ #include <string.h> #include <stdio.h> #include <ctype.h> +#include <errno.h> #include <uninorm.h> #include <unistr.h> #include <uniconv.h> |