Skip to content

Commit

Permalink
fix up ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Jerboa-app committed Jan 1, 2024
1 parent 745f828 commit d6cb8d0
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions include/vendored/ogg/include/ogg/config_types.h.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#ifndef __CONFIG_TYPES_H__
#define __CONFIG_TYPES_H__

/* these are filled in by configure or cmake*/
#define INCLUDE_INTTYPES_H @INCLUDE_INTTYPES_H@
#define INCLUDE_STDINT_H @INCLUDE_STDINT_H@
#define INCLUDE_SYS_TYPES_H @INCLUDE_SYS_TYPES_H@

#if INCLUDE_INTTYPES_H
# include <inttypes.h>
#endif
#if INCLUDE_STDINT_H
# include <stdint.h>
#endif
#if INCLUDE_SYS_TYPES_H
# include <sys/types.h>
#endif

typedef @SIZE16@ ogg_int16_t;
typedef @USIZE16@ ogg_uint16_t;
typedef @SIZE32@ ogg_int32_t;
typedef @USIZE32@ ogg_uint32_t;
typedef @SIZE64@ ogg_int64_t;
typedef @USIZE64@ ogg_uint64_t;

#endif

0 comments on commit d6cb8d0

Please sign in to comment.