File ‹union.h›

/*
 * Copyright (c) 2022 Apple Inc. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

typedef unsigned int uint32;

typedef union myunion {
  unsigned int y;
  int x;
} myunion;