Blame crypto/LPdir_nyi.c

Packit c4476c
/*
Packit c4476c
 * Copyright 2004-2016 The OpenSSL Project Authors. All Rights Reserved.
Packit c4476c
 *
Packit c4476c
 * Licensed under the OpenSSL license (the "License").  You may not use
Packit c4476c
 * this file except in compliance with the License.  You can obtain a copy
Packit c4476c
 * in the file LICENSE in the source distribution or at
Packit c4476c
 * https://www.openssl.org/source/license.html
Packit c4476c
 */
Packit c4476c
Packit c4476c
/*
Packit c4476c
 * This file is dual-licensed and is also available under the following
Packit c4476c
 * terms:
Packit c4476c
 *
Packit c4476c
 * Copyright (c) 2004, Richard Levitte <richard@levitte.org>
Packit c4476c
 * All rights reserved.
Packit c4476c
 *
Packit c4476c
 * Redistribution and use in source and binary forms, with or without
Packit c4476c
 * modification, are permitted provided that the following conditions
Packit c4476c
 * are met:
Packit c4476c
 * 1. Redistributions of source code must retain the above copyright
Packit c4476c
 *    notice, this list of conditions and the following disclaimer.
Packit c4476c
 * 2. Redistributions in binary form must reproduce the above copyright
Packit c4476c
 *    notice, this list of conditions and the following disclaimer in the
Packit c4476c
 *    documentation and/or other materials provided with the distribution.
Packit c4476c
 *
Packit c4476c
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
Packit c4476c
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Packit c4476c
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
Packit c4476c
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
Packit c4476c
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Packit c4476c
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
Packit c4476c
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
Packit c4476c
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
Packit c4476c
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
Packit c4476c
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
Packit c4476c
 * SUCH DAMAGE.
Packit c4476c
 */
Packit c4476c
Packit c4476c
#ifndef LPDIR_H
Packit c4476c
# include "LPdir.h"
Packit c4476c
#endif
Packit c4476c
Packit c4476c
struct LP_dir_context_st {
Packit c4476c
    void *dummy;
Packit c4476c
};
Packit c4476c
const char *LP_find_file(LP_DIR_CTX **ctx, const char *directory)
Packit c4476c
{
Packit c4476c
    errno = EINVAL;
Packit c4476c
    return 0;
Packit c4476c
}
Packit c4476c
Packit c4476c
int LP_find_file_end(LP_DIR_CTX **ctx)
Packit c4476c
{
Packit c4476c
    errno = EINVAL;
Packit c4476c
    return 0;
Packit c4476c
}