wchar.h 284 B

123456789101112131415161718
  1. /*
  2. * Copyright (c) mlibc & plct lab
  3. *
  4. * SPDX-License-Identifier: MIT
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2023/06/16 bernard the first verison
  9. */
  10. #ifndef MLIBC_WCHAR_H__
  11. #define MLIBC_WCHAR_H__
  12. #include "sys/types.h"
  13. typedef int wchar_t;
  14. #endif