blob: 3e9d0b06f834cdd56ad138afce1bdeeb5104825f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
#ifndef TEST
extern inline void libj2_j2u_divmod_j2u_to_j2u_j2u(const struct libj2_j2u *a, const struct libj2_j2u *b,
struct libj2_j2u *res_q, struct libj2_j2u *res_r);
/* TODO Add man page */
#else
CONST int main(void) { return 0; } /* Tested in libj2_j2u_divmod_j2u_to_j2u.c */
#endif
|