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-17.m
blob
4c3b854962c9b82189ab73403fdc665473bbbc82
1
#include <objc/objc.h>
2
#include <objc/objc-api.h>
3
#include <objc/Object.h>
4
5
struct A {
6
int i;
7
float f;
8
int a:3;
9
int b:2;
10
};
11
12
@interface MyObject
13
{
14
Class isa;
15
int i;
16
float f[3];
17
struct A a;
18
}
19
@end
20
21
@implementation MyObject
22
@end
23
24
#include "bf-common.h"
25