ICU-22576 Remove now obsolete pre-C11 backward compatibility code.

This commit is contained in:
Fredrik Roubert 2023-12-21 09:35:25 +09:00 committed by Fredrik Roubert
parent d0672fa8ab
commit ca53838b83

View file

@ -15,6 +15,7 @@
******************************************************************************
*/
#include <stdalign.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
@ -37,12 +38,6 @@
#define MAX_FILE_LEN 1024*20
#define UCS_FILE_NAME_SIZE 512
#if __STDC_VERSION__ < 201112
# define alignof(type) offsetof (struct { char c; type member; }, member)
#elif __STDC_VERSION__ < 202311
# include <stdalign.h>
#endif
/*returns an action other than the one provided*/
#if !UCONFIG_NO_LEGACY_CONVERSION
static UConverterFromUCallback otherUnicodeAction(UConverterFromUCallback MIA);