diff options
author | Thomas Guyot-Sionnest <dermoth@aei.ca> | 2010-04-08 01:11:46 (GMT) |
---|---|---|
committer | Thomas Guyot-Sionnest <dermoth@aei.ca> | 2010-04-13 01:26:35 (GMT) |
commit | 74da141e618ef99959d509cb2e7be35a348a39db (patch) | |
tree | 88ebc38b381a1021fc2d74864a71e230ae591c3d /gl/verify.h | |
parent | c63a4f726a0b6ad8cf6040f947754a81fd4683bb (diff) | |
download | monitoring-plugins-74da141e618ef99959d509cb2e7be35a348a39db.tar.gz |
Sync with the latest Gnulib code (177f525)
Signed-off-by: Thomas Guyot-Sionnest <dermoth@aei.ca>
Diffstat (limited to 'gl/verify.h')
-rw-r--r-- | gl/verify.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gl/verify.h b/gl/verify.h index fac53f6..bcd3f5a 100644 --- a/gl/verify.h +++ b/gl/verify.h | |||
@@ -1,6 +1,6 @@ | |||
1 | /* Compile-time assert-like macros. | 1 | /* Compile-time assert-like macros. |
2 | 2 | ||
3 | Copyright (C) 2005, 2006 Free Software Foundation, Inc. | 3 | Copyright (C) 2005-2006, 2009-2010 Free Software Foundation, Inc. |
4 | 4 | ||
5 | This program is free software: you can redistribute it and/or modify | 5 | This program is free software: you can redistribute it and/or modify |
6 | it under the terms of the GNU General Public License as published by | 6 | it under the terms of the GNU General Public License as published by |
@@ -110,8 +110,8 @@ | |||
110 | 110 | ||
111 | #if 4 <= __GNUC__ | 111 | #if 4 <= __GNUC__ |
112 | # define verify(R) \ | 112 | # define verify(R) \ |
113 | extern int (* verify_function__ (void)) \ | 113 | extern int (* verify_function__ (void)) \ |
114 | [__builtin_constant_p (R) && (R) ? 1 : -1] | 114 | [__builtin_constant_p (R) && (R) ? 1 : -1] |
115 | #endif | 115 | #endif |
116 | 116 | ||
117 | * In C++, any struct definition inside sizeof is invalid. | 117 | * In C++, any struct definition inside sizeof is invalid. |