OpenSDE Packages Database (without history before r20070)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
1.3 KiB

  1. http://svn.exactcode.de/t2/trunk/package/base/uclibc/mempcpy.patch
  2. # --- SDE-COPYRIGHT-NOTE-BEGIN ---
  3. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  4. #
  5. # Filename: package/.../uclibc/mempcpy.patch
  6. # Copyright (C) 2009 The OpenSDE Project
  7. # Copyright (C) 2006 The T2 SDE Project
  8. #
  9. # More information can be found in the files COPYING and README.
  10. #
  11. # This patch file is dual-licensed. It is available under the license the
  12. # patched project is licensed under, as long as it is an OpenSource license
  13. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  14. # of the GNU General Public License as published by the Free Software
  15. # Foundation; either version 2 of the License, or (at your option) any later
  16. # version.
  17. # --- SDE-COPYRIGHT-NOTE-END ---
  18. many __symbols are now hidden in uClibc, and at least __mempcpy is
  19. used by some apps, so keep compatibility
  20. Michael Tross
  21. --- ./include/string.h.old 2006-09-26 18:32:31.000000000 +0200
  22. +++ ./include/string.h 2006-09-27 21:30:52.000000000 +0200
  23. @@ -235,6 +235,7 @@
  24. __const void *__restrict __src, size_t __n)
  25. __THROW __nonnull ((1, 2));
  26. #endif
  27. +#define __mempcpy mempcpy
  28. extern void *mempcpy (void *__restrict __dest,
  29. __const void *__restrict __src, size_t __n)
  30. __THROW __nonnull ((1, 2));