repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
objc
/
execute
/
protocol.m
blob
539fc2994c257d0542cec5d0374a9bc90f0bcad3
1
@protocol Foo
2
- (void)foo;
3
@end
4
5
@interface Foo_c <Foo>
6
{
7
}
8
- (void)foo;
9
@end
10
11
@implementation Foo_c
12
- (void)foo
13
{
14
}
15
@end
16
17
int main (void)
18
{
19
return 0;
20
}
21