blob: 19257699f27d9c793d9a1c441c1d5ddee149c890 [file] [log] [blame]
// © 2017 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
/* Copyright (c) 2014 IBM Corporation and Others. All Rights Reserved. */
#include <stdio.h>
#include <unicode/putil.h>
#include <unicode/uclean.h>
int main() {
UErrorCode status = U_ZERO_ERROR;
u_init(&status);
puts(u_errorName(status));
u_cleanup();
return U_FAILURE(status)?1:0;
}