blob: 2b55afa54d5576e17ad355800e9e3041fea2037c [file] [log] [blame]
Alexei Frolove2016762019-11-14 13:49:52 -08001// Copyright 2019 The Pigweed Authors
2//
3// Licensed under the Apache License, Version 2.0 (the "License"); you may not
Wyatt Hepler1a960942019-11-26 14:13:38 -08004// use this file except in compliance with the License. You may obtain a copy of
5// the License at
Alexei Frolove2016762019-11-14 13:49:52 -08006//
7// https://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
Wyatt Hepler1a960942019-11-26 14:13:38 -080012// License for the specific language governing permissions and limitations under
13// the License.
Alexei Frolove2016762019-11-14 13:49:52 -080014
15#include "pw_bloat/bloat_this_binary.h"
16
17int main() {
18 pw::bloat::BloatThisBinary();
Wyatt Heplercfe35262019-11-15 12:37:57 -080019 return 0;
Alexei Frolove2016762019-11-14 13:49:52 -080020}