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-8.m
blob
cc472f961309a54ca74ae8961dadeca3746a8fa5
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:6;
12
int k:12;
13
char c;
14
void *pointer;
15
}
16
@end
17
18
@implementation MyObject
19
@end
20
21
#include "bf-common.h"
22