Home | History | Annotate | Download | only in bsdiff
      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