~ubuntu-branches/ubuntu/breezy/orbit2/breezy

« back to all changes in this revision

Viewing changes to src/idl-compiler/orbit-idl-c-deps.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2005-09-06 16:37:02 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20050906163702-hrqi0ctymth53bnn
Tags: 1:2.12.4-0ubuntu1
* New upstream version.
* debian/patches/100-compile-name-server.patch:
  - updated.

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
}
46
46
 
47
47
void
48
 
orbit_idl_output_c_deps (OIDL_Output_Tree *tree,
 
48
orbit_idl_output_c_deps (IDL_tree       tree,
49
49
                         OIDL_Run_Info *rinfo, 
50
 
                         OIDL_C_Info *ci)
 
50
                         OIDL_C_Info   *ci)
51
51
{
52
52
        int i;
53
53
 
61
61
 
62
62
        fprintf (ci->fh, ": ");
63
63
  
64
 
        output_deps (tree->tree, rinfo, ci);
 
64
        output_deps (tree, rinfo, ci);
65
65
 
66
66
        fprintf (ci->fh, "\n");
67
67
}
68
 
 
69
 
 
70