1 #ifndef SCALES_H 2 #define SCALES_H 3 // Testing # on first line 4 // Note: #ifndef and #pragma once header guards both work 5 6 // Copyright (c) 2017-2026, Lawrence Livermore National Security, LLC and other CEED contributors. 7 // All Rights Reserved. See the top-level LICENSE and NOTICE files for details. 8 // 9 // SPDX-License-Identifier: BSD-2-Clause 10 // 11 // This file is part of CEED: http://github.com/ceed 12 13 #define SCALE_TWO 2 14 15 #define SCALE_THREE 3 16 17 #endif // SCALES_H 18