File: safe_math_compile.c

package info (click to toggle)
safeint 3.0.28a%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,668 kB
  • sloc: cpp: 24,880; ansic: 3,183; makefile: 53
file content (11 lines) | stat: -rw-r--r-- 162 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
#include "../../safe_math.h"

void call_functions(void);

int main(int argc, char** argv)
{
    (void)argc;
    (void)argv;
    call_functions();
    return 0;
}