putchar method

int putchar(
  1. int __c
)

Implementation

int putchar(
  int __c,
) {
  return _putchar(
    __c,
  );
}