summaryrefslogtreecommitdiffstats
path: root/newlib/libc/machine/spu/perror.c
blob: ad79a48db83201cd1b75b692d7669612b9a5e9e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdio.h>

#include "c99ppe.h"

void
_DEFUN (perror, (s),
	_CONST char *s)

{
  send_to_ppe(SPE_C99_SIGNALCODE, SPE_C99_PERROR, &s);

  return;
}