23 lines
327 B
C
23 lines
327 B
C
|
|
/*
|
|
* This file is part of the micropython-ulab project,
|
|
*
|
|
* https://github.com/v923z/micropython-ulab
|
|
*
|
|
* The MIT License (MIT)
|
|
*
|
|
* Copyright (c) 2020 Zoltán Vörös
|
|
*/
|
|
|
|
#ifndef _EXTRA_
|
|
#define _EXTRA_
|
|
|
|
#include "ulab.h"
|
|
#include "ndarray.h"
|
|
|
|
#if ULAB_EXTRAS_MODULE
|
|
|
|
mp_obj_module_t ulab_extras_module;
|
|
|
|
#endif
|
|
#endif
|