summaryrefslogtreecommitdiff
path: root/source/luametatex/source/mp/mpw/mpmathbinary.w
blob: 0fb3c0a5d47d01fdd67f721efcc9caf682eb5ea6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
% This file is part of MetaPost. The MetaPost program is in the public domain.

@ @(mpmathbinary.h@>=
# ifndef MPMATHBINARY_H
# define MPMATHBINARY_H 1

# include "mp.h"

math_data *mp_initialize_binary_math (MP mp);

# endif

@ @c
# include <stdio.h>

@ @c
# include "mpconfig.h"
# include "mpmathbinary.h"

extern void tex_normal_warning (const char *t, const char *p);

math_data *mp_initialize_binary_math (MP mp)
{
    (void) (mp);
    tex_normal_warning("mplib", "binary mode is not available.");
    return NULL;
}