aboutsummaryrefslogtreecommitdiff
path: root/libgloss/sparc/libsys/template.S
blob: e1b437bf18ea7303293578bdfb2e4fbade7fe82a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* system call template */

/* Lots of system calls are trivial functions, so we build their source files
   from a template.  New syscalls can be added simply by editing the
   Makefile!

   Usage: Compile this file with "func" set to the name of the syscall.  */

#include "syscallasm.h"

#define concat(a,b) a##b
#define makesys(a)  concat (SYS_, a)

	defsyscall (func, makesys(func))