~ubuntu-branches/ubuntu/vivid/cproto/vivid

« back to all changes in this revision

Viewing changes to testing/case24.ref

  • Committer: Bazaar Package Importer
  • Author(s): Kenneth J. Pronovici
  • Date: 2004-03-30 19:58:33 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040330195833-loh9sgce2as79j67
Tags: 4.7c-1
* New upstream release.
  - Includes equivalent of patch as used to close #228801 (see below).
  - Supports -X option to filter out unwanted definitions (closes: #235824).
* Now configure using --enable-llib option, so we don't need lint installed.
* Added gcc to Depends: line since -X option requires GCC to work; I assume
  most users will already have gcc installed anyway, if they are developers.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* case24.c */
 
2
void badFunc(int *badStyle);
 
3
int dots_0(int p1);
 
4
int dots_1(int p1, ...);
 
5
int dots_3(int p1, char p2, ...);
 
6
_FIRST *func1(void);
 
7
_FIRST *func2(_FIRST *p1, int p2[], float p);
 
8
int *(func_func)(void);
 
9
int main(register argc, char **argv);
 
10
int veryfunny(char *a, long b, long c);
 
11
int program(string argv[], struct alpha y, int zz, int z1, int z2, int z3);
 
12
int junk0(void);
 
13
int junk1(void);
 
14
int junk2(void);
 
15
int junk3(void);
 
16
BONG *junk4(void);
 
17
extern_junk *foo(void);
 
18
void_junk *foo2a(void);
 
19
void_junk *foo2(void);
 
20
void_junk *foo_void(void_junk void_int);
 
21
static void_junk *foo_void2(void);
 
22
void (*Sigdisp(int sig, void (*func)(int sig)))(int sig1);
 
23
void (*sigdisp2(int sig, void (*func)(int sig)))(int sig2);
 
24
int (*K_R_INT_ptr(long *p1, int p2))(void);
 
25
void (*K_R_VOID_ptr(long *p1, int p2))(void);
 
26
int *K_R_int_ptr(long *p1, int p2);
 
27
void *K_R_void_ptr(long *p1, int p2);
 
28
int K_R_int_val(long *p1, int p2);
 
29
int K_R_int_val2(long *p1, int p2);
 
30
void K_R_void_val(long *p1, int p2);
 
31
int K_R_void_val2(long *p1, int p2);
 
32
int inline inline_func(double x);
 
33
static int inline local_inline_func(double x);