X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=include%2Flibiberty.h;h=a0cbbcfa693ad30e6b7374d798513e5f9233135f;hb=26a67918a501370a8fe62db18a74761a0073016f;hp=0b6ef453e3bd7598a5050eb3a0ae644a726d137d;hpb=124aceb46dfd1f836f35d6075ead4e00e705f6f3;p=deliverable%2Fbinutils-gdb.git diff --git a/include/libiberty.h b/include/libiberty.h index 0b6ef453e3..a0cbbcfa69 100644 --- a/include/libiberty.h +++ b/include/libiberty.h @@ -3,7 +3,7 @@ Copyright (C) 1997-2017 Free Software Foundation, Inc. Note - certain prototypes declared in this header file are for - functions whose implementation copyright does not belong to the + functions whoes implementation copyright does not belong to the FSF. Those prototypes are present in this file for reference purposes only and their presence in this file should not construed as an indication of ownership by the FSF of the implementation of @@ -724,7 +724,7 @@ extern void *C_alloca (size_t) ATTRIBUTE_MALLOC; # define ASTRDUP(X) \ (__extension__ ({ const char *const libiberty_optr = (X); \ const unsigned long libiberty_len = strlen (libiberty_optr) + 1; \ - char *const libiberty_nptr = (char *const) alloca (libiberty_len); \ + char *const libiberty_nptr = (char *) alloca (libiberty_len); \ (char *) memcpy (libiberty_nptr, libiberty_optr, libiberty_len); })) #else # define alloca(x) C_alloca(x)