Rename WAV_H "include guard" macro of afile.h to AFILE_H

Fix from Jan Stary <hans at stare.cz>, thanks.
This commit is contained in:
Alexandre Ratchov 2020-02-09 23:47:30 +01:00
parent cf2e5f1727
commit 3be156f2f0
1 changed files with 3 additions and 3 deletions

View File

@ -14,8 +14,8 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#ifndef WAV_H
#define WAV_H
#ifndef AFILE_H
#define AFILE_H
#include <sys/types.h>
#include "dsp.h"
@ -52,4 +52,4 @@ size_t afile_write(struct afile *, void *, size_t);
int afile_seek(struct afile *, off_t);
void afile_close(struct afile *);
#endif /* !defined(WAV_H) */
#endif /* !defined(AFILE_H) */