Browse Source

tools/yuvcmp: add HAVE_UNISTD_H around #include <unistd.h>

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.3
Michael Niedermayer 10 years ago
parent
commit
1574eedd0e
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      tools/yuvcmp.c

+ 3
- 1
tools/yuvcmp.c View File

@@ -9,8 +9,10 @@
#include <stdio.h> #include <stdio.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <fcntl.h> #include <fcntl.h>
#include <unistd.h>


#if HAVE_UNISTD_H
#include <unistd.h>
#endif


int int
main(int argc, char **argv) main(int argc, char **argv)


Loading…
Cancel
Save