Skip to content

Commit b4fa231

Browse files
committed
Reorder includes
1 parent f0b1d34 commit b4fa231

File tree

1 file changed

+4
-4
lines changed
  • lib/node_modules/@stdlib/ndarray/base/bytes-per-element/src

1 file changed

+4
-4
lines changed

lib/node_modules/@stdlib/ndarray/base/bytes-per-element/src/main.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
* limitations under the License.
1717
*/
1818

19-
#include <stdint.h>
20-
#include "stdlib/ndarray/dtypes.h"
2119
#include "stdlib/ndarray/base/bytes_per_element.h"
20+
#include "stdlib/ndarray/dtypes.h"
21+
#include <stdint.h>
2222

2323
/**
2424
* Returns the number of bytes per element for a given data type.
@@ -31,9 +31,9 @@
3131
* @return number of bytes per element
3232
*
3333
* @example
34-
* #include <stdint.h>
35-
* #include "stdlib/ndarray/dtypes.h"
3634
* #include "stdlib/ndarray/base/bytes_per_element.h"
35+
* #include "stdlib/ndarray/dtypes.h"
36+
* #include <stdint.h>
3737
*
3838
* uint8_t nbytes = stdlib_ndarray_bytes_per_element( STDLIB_NDARRAY_FLOAT64 );
3939
* // returns 8

0 commit comments

Comments
 (0)