diff options
author | JinWang An <jinwang.an@samsung.com> | 2022-12-27 12:15:02 +0900 |
---|---|---|
committer | JinWang An <jinwang.an@samsung.com> | 2022-12-27 12:15:02 +0900 |
commit | 8b3c9e355c111dccdc9116fbb27514acb21789f1 (patch) | |
tree | b5de9916c11d41454ec975fb3aaf11a97874eac1 /lib/assure.h | |
parent | 02a08acfc3145de1707c7704c566e4401ff5a8de (diff) | |
download | diffutils-8b3c9e355c111dccdc9116fbb27514acb21789f1.tar.gz diffutils-8b3c9e355c111dccdc9116fbb27514acb21789f1.tar.bz2 diffutils-8b3c9e355c111dccdc9116fbb27514acb21789f1.zip |
Imported Upstream version 3.7upstream/3.7
Diffstat (limited to 'lib/assure.h')
-rw-r--r-- | lib/assure.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/assure.h b/lib/assure.h index 2fc3043..1cc600a 100644 --- a/lib/assure.h +++ b/lib/assure.h @@ -1,6 +1,6 @@ /* Run-time assert-like macros. - Copyright (C) 2014-2017 Free Software Foundation, Inc. + Copyright (C) 2014-2018 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program. If not, see <http://www.gnu.org/licenses/>. */ + along with this program. If not, see <https://www.gnu.org/licenses/>. */ /* Written by Paul Eggert. */ @@ -23,7 +23,7 @@ #include <assert.h> /* Check E's value at runtime, and report an error and abort if not. - However, do nothng if NDEBUG is defined. + However, do nothing if NDEBUG is defined. Unlike standard 'assert', this macro always compiles E even when NDEBUG is defined, so as to catch typos and avoid some GCC warnings. */ |