diff options
author | David S. Miller <davem@davemloft.net> | 2012-12-04 16:05:57 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-12-04 16:05:57 -0500 |
commit | c8df52eccfa2d1ace13d887aa6bdab1178c1edb4 (patch) | |
tree | 0681c2185383530401669efc67dcbc50eaa08028 /sysdeps/generic | |
parent | c33aa6e3e38baeeede0ee9571bbb9e2436263d34 (diff) | |
download | glibc-c8df52eccfa2d1ace13d887aa6bdab1178c1edb4.tar glibc-c8df52eccfa2d1ace13d887aa6bdab1178c1edb4.tar.gz glibc-c8df52eccfa2d1ace13d887aa6bdab1178c1edb4.tar.bz2 glibc-c8df52eccfa2d1ace13d887aa6bdab1178c1edb4.zip |
Fix sparc build with older compilers.
* sysdeps/generic/memcopy.h: Add multiple inclusion protection.
Diffstat (limited to 'sysdeps/generic')
-rw-r--r-- | sysdeps/generic/memcopy.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sysdeps/generic/memcopy.h b/sysdeps/generic/memcopy.h index a8e5a44fe5..631214b85a 100644 --- a/sysdeps/generic/memcopy.h +++ b/sysdeps/generic/memcopy.h @@ -1,5 +1,5 @@ /* memcopy.h -- definitions for memory copy functions. Generic C version. - Copyright (C) 1991, 1992, 1993, 1997, 2004 Free Software Foundation, Inc. + Copyright (C) 1991, 1992, 1993, 1997, 2004, 2012 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Torbjorn Granlund (tege@sics.se). @@ -17,6 +17,9 @@ License along with the GNU C Library; if not, see <http://www.gnu.org/licenses/>. */ +#ifndef _MEMCOPY_H +#define _MEMCOPY_H 1 + /* The strategy of the memory functions is: 1. Copy bytes until the destination pointer is aligned. @@ -144,3 +147,5 @@ extern void _wordcopy_bwd_dest_aligned (long int, long int, size_t) __THROW; /* Threshold value for when to enter the unrolled loops. */ #define OP_T_THRES 16 + +#endif /* memcopy.h */ |