blob: b37664b59dacfcf14eef7b376dea119fb474e062 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <u.h>
#include <libc.h>
#include <bio.h>
#include "apl9.h"
Function
inverse(Function f)
{
Rune *msg = runesmprint("No inverse defined for %S", ppfunction(f));
throwerror(msg, EDomain);
return f;
}
|