feab8aa5e3
"pahole -Z foo" will create foo.SUNW_ctf, that if objcopy --add-section'ed to the right word-sized object will work, sans VARARGS, that will get fixed soon (as in, probably, tomorrow). Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
17 lines
422 B
C
17 lines
422 B
C
#ifndef _CTF_ENCODER_H_
|
|
#define _CTF_ENCODER_H_ 1
|
|
/*
|
|
Copyright (C) 2009 Red Hat Inc.
|
|
Copyright (C) 2009 Arnaldo Carvalho de Melo <acme@redhat.com>
|
|
|
|
This program is free software; you can redistribute it and/or modify it
|
|
under the terms of version 2 of the GNU General Public License as
|
|
published by the Free Software Foundation.
|
|
*/
|
|
|
|
struct cu;
|
|
|
|
int cu__encode_ctf(struct cu *self);
|
|
|
|
#endif /* _CTF_ENCODER_H_ */
|