summaryrefslogtreecommitdiff
path: root/lib/stdarg.in.h
diff options
context:
space:
mode:
authorTizenOpenSource <tizenopensrc@samsung.com>2023-12-28 15:00:17 +0900
committerTizenOpenSource <tizenopensrc@samsung.com>2023-12-28 15:00:17 +0900
commitfa0afb24e35ce19c2a1a660be317f9c2bfff51c0 (patch)
treebb551af4faaab9e46e88356e57e0df276868de34 /lib/stdarg.in.h
parent63bb5dc37a2dfabc6c03c04bc27ea5d47b922863 (diff)
downloaddiffutils-fa0afb24e35ce19c2a1a660be317f9c2bfff51c0.tar.gz
diffutils-fa0afb24e35ce19c2a1a660be317f9c2bfff51c0.tar.bz2
diffutils-fa0afb24e35ce19c2a1a660be317f9c2bfff51c0.zip
Imported Upstream version 3.10upstream/3.10upstream
Diffstat (limited to 'lib/stdarg.in.h')
-rw-r--r--lib/stdarg.in.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/stdarg.in.h b/lib/stdarg.in.h
index 9269da2..8145216 100644
--- a/lib/stdarg.in.h
+++ b/lib/stdarg.in.h
@@ -1,5 +1,5 @@
/* Substitute for and wrapper around <stdarg.h>.
- Copyright (C) 2008-2021 Free Software Foundation, Inc.
+ Copyright (C) 2008-2023 Free Software Foundation, Inc.
This file is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as
@@ -27,6 +27,11 @@
#ifndef _@GUARD_PREFIX@_STDARG_H
#define _@GUARD_PREFIX@_STDARG_H
+/* This file uses va_copy. */
+#if !_GL_CONFIG_H_INCLUDED
+ #error "Please include config.h first."
+#endif
+
#ifndef va_copy
# define va_copy(a,b) ((a) = (b))
#endif