~ubuntu-branches/ubuntu/raring/libnih/raring

« back to all changes in this revision

Viewing changes to nih-dbus-tool/parse.h

  • Committer: James Hunt
  • Date: 2013-03-14 10:27:34 UTC
  • mfrom: (1027.1.34 upstart-devel-libnih)
  • Revision ID: james.hunt@ubuntu.com-20130314102734-blit21ei3v9n0u2o
Tags: 1.0.3-4ubuntu16
Merge of important fixes from lp:~upstart-devel/libnih/nih
(LP: #776532, LP: #777097, LP: #834813, LP: #1123588).

Show diffs side-by-side

added added

removed removed

Lines of Context:
95
95
 
96
96
ParseStack *parse_stack_push (const void *parent, NihList *stack,
97
97
                              ParseStackType type, void *data)
98
 
        __attribute__ ((warn_unused_result, malloc));
 
98
        __attribute__ ((warn_unused_result));
99
99
ParseStack *parse_stack_top  (NihList *stack);
100
100
 
101
101
void        parse_start_tag  (XML_Parser xmlp, const char *tag,
103
103
void        parse_end_tag    (XML_Parser xmlp, const char *tag);
104
104
 
105
105
Node *      parse_xml        (const void *parent, int fd, const char *filename)
106
 
        __attribute__ ((warn_unused_result, malloc));
 
106
        __attribute__ ((warn_unused_result));
107
107
 
108
108
NIH_END_EXTERN
109
109