File: sub.cpp

package info (click to toggle)
mymake 2.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 672 kB
  • sloc: cpp: 5,688; lisp: 300; ansic: 195; sh: 86; makefile: 32
file content (6 lines) | stat: -rw-r--r-- 87 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
#include "sub.h"
#include "utils/add.h"

int sub(int a, int b) {
	return add(a, -b);
}