diff options
author | Werner Koch <[email protected]> | 2015-04-24 14:42:28 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2015-04-24 14:42:28 +0000 |
commit | 172b6193488f433a206fd88f85d8c4a5d1eb7fdf (patch) | |
tree | f29c173aacc6be4f517e92ca3da8c10dbd73c35b /common/xmalloc.h | |
parent | common: Rename log and gcc attribute macros (jnlib merge). (diff) | |
download | gnupg-172b6193488f433a206fd88f85d8c4a5d1eb7fdf.tar.gz gnupg-172b6193488f433a206fd88f85d8c4a5d1eb7fdf.zip |
common: Remove JNLIB from boiler plate (jnlib merge).
* common/README.jnlib: Remove.
--
This is the final part of merging jnlib into gnupg/common.
Diffstat (limited to '')
-rw-r--r-- | common/xmalloc.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/common/xmalloc.h b/common/xmalloc.h index 73d6f45bc..d91883d15 100644 --- a/common/xmalloc.h +++ b/common/xmalloc.h @@ -1,9 +1,9 @@ /* xmalloc.h * Copyright (C) 1999, 2000, 2001, 2006 Free Software Foundation, Inc. * - * This file is part of JNLIB, which is a subsystem of GnuPG. + * This file is part of GnuPG. * - * JNLIB is free software; you can redistribute it and/or modify it + * GnuPG is free software; you can redistribute it and/or modify it * under the terms of either * * - the GNU Lesser General Public License as published by the Free @@ -18,7 +18,7 @@ * * or both in parallel, as here. * - * JNLIB is distributed in the hope that it will be useful, but + * GnuPG is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. @@ -28,8 +28,8 @@ * if not, see <http://www.gnu.org/licenses/>. */ -#ifndef LIBJNLIB_XMALLOC_H -#define LIBJNLIB_XMALLOC_H +#ifndef GNUPG_COMMON_XMALLOC_H +#define GNUPG_COMMON_XMALLOC_H void *xmalloc( size_t n ); void *xrealloc( void *a, size_t n ); @@ -38,4 +38,4 @@ char *xstrdup( const char *string ); char *xstrcat2( const char *a, const char *b ); -#endif /*LIBJNLIB_XMALLOC_H*/ +#endif /*GNUPG_COMMON_XMALLOC_H*/ |