#include "../lpi.h"
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <err.h>

int
main(int argc, char *argv[])
{
    int fd;

    if ((fd = open("/", O_WRONLY)) == -1)
        err(EXIT_FAILURE, "open");

    exit(EXIT_SUCCESS);
}
