iconv.c 1.2 KB

1234567891011121314151617181920212223242526
  1. /***********************************************************************
  2. * *
  3. * This software is part of the ast package *
  4. * Copyright (c) 1994-2011 AT&T Intellectual Property *
  5. * Copyright (c) 2020-2022 Contributors to ksh 93u+m *
  6. * and is licensed under the *
  7. * Eclipse Public License, Version 2.0 *
  8. * *
  9. * A copy of the License is available at *
  10. * https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html *
  11. * (with md5 checksum 84283fa8859daf213bdda5a9f8d1be1d) *
  12. * *
  13. * Glenn Fowler <gsf@research.att.com> *
  14. * Martijn Dekker <martijn@inlv.org> *
  15. * *
  16. ***********************************************************************/
  17. #ifndef iconv
  18. #include <iconv.h>
  19. #endif
  20. int
  21. main()
  22. {
  23. iconv(0, 0, 0, 0, 0);
  24. return 0;
  25. }