//----------------------------------------------------------------------------------
// <copyright file="int_math.h" company="LiquidRobotics">
//	Copyright (c) Liquid Robotics Corporation.  All rights reserved.
// </copyright>
//
// <summary>
// 	Header file for the integer math routines
// </summary>
//
// <owner>Jim Kirklin</owner>
//---------------------------------------------------------------------------------

#ifndef __INT_MATH_H__
#define __INT_MATH_H__

uint32_t umult16x16(uint16_t a, uint16_t b);
int32_t  smult16x16(int16_t a, int16_t b);



#endif
