repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix up mix of man(7)/mdoc(7).
[netbsd-mini2440.git]
/
lib
/
libc
/
sys
/
Lint_ptrace.c
blob
fd41df41eda46f2a3d2da93df76bb2ddecacf37d
1
/* $NetBSD: Lint_ptrace.c,v 1.1 1997/11/06 00:53:02 cgd Exp $ */
2
3
/*
4
* This file placed in the public domain.
5
* Chris Demetriou, November 5, 1997.
6
*/
7
8
#include <unistd.h>
9
10
/*ARGSUSED*/
11
int
12
ptrace
(
request
,
pid
,
addr
,
data
)
13
int
request
;
14
pid_t pid
;
15
caddr_t addr
;
16
int
data
;
17
{
18
return
(
0
);
19
}