* Fix missing comma in type definition Signed-off-by: Damien George <damien@micropython.org> * Make sure all files have a new-line at the end Some very old compilers don't like files without a new-line at the end. Signed-off-by: Damien George <damien@micropython.org> * Use math.isclose for universal_functions expm1 test Signed-off-by: Damien George <damien@micropython.org> Signed-off-by: Damien George <damien@micropython.org>
19 lines
395 B
C
19 lines
395 B
C
/*
|
|
* This file is part of the micropython-ulab project,
|
|
*
|
|
* https://github.com/v923z/micropython-ulab
|
|
*
|
|
* The MIT License (MIT)
|
|
*
|
|
* Copyright (c) 2022 Zoltán Vörös
|
|
*/
|
|
|
|
#ifndef _ULAB_IO_
|
|
#define _ULAB_IO_
|
|
|
|
MP_DECLARE_CONST_FUN_OBJ_1(io_load_obj);
|
|
MP_DECLARE_CONST_FUN_OBJ_KW(io_loadtxt_obj);
|
|
MP_DECLARE_CONST_FUN_OBJ_2(io_save_obj);
|
|
MP_DECLARE_CONST_FUN_OBJ_KW(io_savetxt_obj);
|
|
|
|
#endif
|