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