max.c 87 B

1234567
  1. #define _RESEARCH_SOURCE
  2. #include <libv.h>
  3. max(int a, int b)
  4. {
  5. return (a>b? a: b);
  6. }