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
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
objc
/
execute
/
bf-9.m
blob
0f17727d6df888de7e41cd7f2305bc02b2837d06
1
#include <objc/objc.h>
2
#include <objc/objc-api.h>
3
#include <objc/Object.h>
4
5
@interface MyObject
6
{
7
Class isa;
8
float f;
9
char a[3];
10
int i:2;
11
int j:3;
12
char c;
13
int k:12;
14
char d;
15
void *pointer;
16
}
17
@end
18
19
@implementation MyObject
20
@end
21
22
#include "bf-common.h"
23