Fix building unlink_fstat00 unlink test case

Signed-off-by: Adrian Reber <areber@redhat.com>
Signed-off-by: Andrei Vagin <avagin@virtuozzo.com>
This commit is contained in:
Adrian Reber 2018-05-09 17:08:27 +00:00 committed by Pavel Emelyanov
parent b988fae544
commit a9e29bc596

View file

@ -9,6 +9,14 @@
#include "zdtmtst.h"
#ifndef __O_TMPFILE
#define __O_TMPFILE 020000000
#endif
#ifndef O_TMPFILE
#define O_TMPFILE (__O_TMPFILE | O_DIRECTORY)
#endif
const char *test_doc = "Open, unlink, change size, seek, migrate, check size";
#ifdef UNLINK_FSTAT04