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-3.m
blob
04cf0836faac975c6f3fd99a9d53e2eaa8f5bb11
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;
10
struct {
11
int i:2;
12
int j:6;
13
int k:12;
14
} flags;
15
char c;
16
void *pointer;
17
}
18
@end
19
20
@implementation MyObject
21
@end
22
23
#include "bf-common.h"
24