~ubuntu-branches/debian/jessie/libsndfile/jessie

« back to all changes in this revision

Viewing changes to src/macos.c

  • Committer: Bazaar Package Importer
  • Author(s): Samuel Mimram
  • Date: 2009-02-17 19:21:03 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20090217192103-7rhu1n8p79jnbzy3
Tags: 1.0.18-2
Add missing build-dependencies on pkg-config and libvorbis-dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
** Copyright (C) 2003-2005 Erik de Castro Lopo <erikd@mega-nerd.com>
 
2
** Copyright (C) 2003-2009 Erik de Castro Lopo <erikd@mega-nerd.com>
3
3
**
4
4
** This program is free software; you can redistribute it and/or modify
5
5
** it under the terms of the GNU Lesser General Public License as published by
29
29
#define STR_MARKER      MAKE_MARKER ('S', 'T', 'R', ' ')
30
30
 
31
31
int
32
 
macos_guess_file_type (SF_PRIVATE *psf, const char *filename)
 
32
macos_guess_file_type (SF_PRIVATE * psf, const char *filename)
33
33
{       static char rsrc_name [1024] ;
34
34
        struct stat statbuf ;
35
 
        int format ;
36
 
 
37
 
        psf = psf ;
38
35
 
39
36
        snprintf (rsrc_name, sizeof (rsrc_name), "%s/rsrc", filename) ;
40
37
 
49
46
                return 0 ;
50
47
                } ;
51
48
 
52
 
        format = 0 ;
53
 
 
54
 
        return format ;
 
49
        return 0 ;
55
50
} /* macos_guess_file_type */
56
51
 
57
 
/*
58
 
** Do not edit or modify anything in this comment block.
59
 
** The arch-tag line is a file identity tag for the GNU Arch 
60
 
** revision control system.
61
 
**
62
 
** arch-tag: 5fbf66d7-9547-442a-9c73-92fd164f3a95
63
 
*/