Perform some minor fixups

This commit is contained in:
Justine Tunney 2021-03-16 22:19:51 -07:00
parent ca88ce5026
commit 4e93750afd
9 changed files with 24 additions and 50 deletions

View file

@ -22,6 +22,6 @@
/**
* Returns absolute value of x.
*/
int(abs)(int x) {
int abs(int x) {
return ABS(x);
}