mirror of https://github.com/vmware/tdnf.git
35 lines
803 B
C
35 lines
803 B
C
/*
|
|
* Copyright (C) 2015-2023 VMware, Inc. All Rights Reserved.
|
|
*
|
|
* Licensed under the GNU Lesser General Public License v2.1 (the "License");
|
|
* you may not use this file except in compliance with the License. The terms
|
|
* of the License are located in the COPYING file of this distribution.
|
|
*/
|
|
|
|
#ifndef __COMMON_INCLUDES_H__
|
|
#define __COMMON_INCLUDES_H__
|
|
|
|
#include <ctype.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdint.h>
|
|
#include <stdarg.h>
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
#include <stdbool.h>
|
|
#include <fcntl.h>
|
|
#include <sys/stat.h>
|
|
#include <unistd.h>
|
|
#include <libgen.h>
|
|
#include <limits.h>
|
|
|
|
#include <tdnftypes.h>
|
|
#include <tdnferror.h>
|
|
#include <tdnf-common-defines.h>
|
|
|
|
#include "defines.h"
|
|
#include "structs.h"
|
|
#include "prototypes.h"
|
|
|
|
#endif /* __COMMON_INCLUDES_H__ */
|