blob: f72d13d04bad08b5db3ceef97b4c5a0395d0557d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// Copyright (c) the JPEG XL Project Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
#ifndef LIB_JXL_BASE_INCLUDE_JPEGLIB_H_
#define LIB_JXL_BASE_INCLUDE_JPEGLIB_H_
// Using this header ensures that includes go in the right order,
// not alphabetically sorted.
// NOLINTBEGIN
/* clang-format off */
#include <stdio.h> // IWYU pragma: keep
#include <jpeglib.h> // IWYU pragma: keep
#include <setjmp.h> // IWYU pragma: keep
/* clang-format on */
// NOLINTEND
#endif // LIB_JXL_BASE_INCLUDE_JPEGLIB_H_
|