/rusxmms/librcc

To get this branch, use:
bzr branch http://suren.me/webbzr/rusxmms/librcc

« back to all changes in this revision

Viewing changes to src/rccxml.c

  • Committer: Suren A. Chilingaryan
  • Date: 2010-07-16 07:58:26 UTC
  • Revision ID: csa@dside.dyndns.org-20100716075826-4rvnh4iccqrqsdfj
Windows fixes and CMake scripts to build under Windows

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
*/
19
19
 
20
20
#include <stdio.h>
 
21
#include <stdarg.h>
 
22
 
21
23
#include <string.h>
22
 
#include <stdarg.h>
 
24
#ifdef HAVE_STRINGS_H
 
25
# include <strings.h>
 
26
#endif /* HAVE_STRINGS_H */
23
27
 
24
28
#include "../config.h"
25
29
 
467
471
                }
468
472
                xmlFreeDoc(doc);
469
473
            }
 
474
            
 
475
#ifdef HAVE_FSYNC
470
476
            fsync(fd);
 
477
#endif /* HAVE_FSYNC */
471
478
 
472
479
#if defined(HAVE_FLOCK)
473
480
            flock(fd, LOCK_UN);