xref: /aosp_15_r20/external/bsdiff/include/bsdiff/common.h (revision a3a45f308bd90ef1a6e6a5e8fb92fe449b895909)
1 // Copyright 2017 The Chromium OS Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef _BSDIFF_COMMON_H_
6 #define _BSDIFF_COMMON_H_
7 
8 // We defined this export macro to avoid depending on brillo (BRILLO_EXPORT in
9 // "brillo/brillo_export.h")
10 #ifndef BSDIFF_EXPORT
11 #define BSDIFF_EXPORT __attribute__((__visibility__("default")))
12 #endif
13 
14 #endif  // _BSDIFF_COMMON_H_
15