File: baz.c

package info (click to toggle)
debugedit 1%3A5.3-3
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 1,408 kB
  • sloc: sh: 12,042; ansic: 5,032; makefile: 115
file content (21 lines) | stat: -rw-r--r-- 423 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include "foobar.h"

struct debug_types_section1 var_baz1;

/* Use different DW_AT_stmt_list in .debug_types having it outside foobar.h.
   Also use two types in .debug_types for multiple COMDAT sections in object
   files.  */
struct debug_types_section_baz
{
  int stringp_baz, stz;
};
struct debug_types_section_baz var_baz;

int
main ()
{
  int res;
  res = foo ();
  res = bar (res);
  return res + number - NUMBER;
}