xref: /haiku/src/bin/debug/strace/strace.h (revision 8df6a8dbf579280f55b61d725e470dee5d504e83)
1 /*
2  * Copyright 2007, Haiku Inc. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  * 		Hugo Santos <hugosantos@gmail.com>
7  * 		Ingo Weinhold <bonefish@cs.tu-berlin.de>
8  */
9 #ifndef STRACE_H
10 #define STRACE_H
11 
12 class Syscall;
13 
14 Syscall *get_syscall(const char *name);
15 
16 #endif	// STRACE_H
17