1e1051a39Sopenharmony_ci#!/bin/sh
2e1051a39Sopenharmony_ci#
3e1051a39Sopenharmony_ci# Copyright 2019-2020 The OpenSSL Project Authors. All Rights Reserved.
4e1051a39Sopenharmony_ci#
5e1051a39Sopenharmony_ci# Licensed under the Apache License 2.0 (the "License").  You may not use
6e1051a39Sopenharmony_ci# this file except in compliance with the License.  You can obtain a copy
7e1051a39Sopenharmony_ci# in the file LICENSE in the source distribution or at
8e1051a39Sopenharmony_ci# https://www.openssl.org/source/license.html
9e1051a39Sopenharmony_ci
10e1051a39Sopenharmony_cifind -name ossl_typ.h -o \( \
11e1051a39Sopenharmony_ci	 -name '*.h' -o \
12e1051a39Sopenharmony_ci	 -name '*.h.in' -o \
13e1051a39Sopenharmony_ci	 -name '*.c' -o \
14e1051a39Sopenharmony_ci	 -name '*.ec' -o \
15e1051a39Sopenharmony_ci	 -name 'README*' -o \
16e1051a39Sopenharmony_ci	 -name '*.pod' -o \
17e1051a39Sopenharmony_ci	 -name '*.cnf' -o -name '*.conf' \
18e1051a39Sopenharmony_ci	 \) -exec sed -E -i \
19e1051a39Sopenharmony_ci	 -f util/fix-includes.sed {} \;
20