// © 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 #include #include int main() { UErrorCode status = U_ZERO_ERROR; u_init(&status); puts(u_errorName(status)); u_cleanup(); return U_FAILURE(status)?1:0; }