// MIT License, Copyright (c) 2020 Marvin Borner

#ifndef MATH_H
#define MATH_H

#include <def.h>

int pow(int base, int exp);

#endif