blob: 443e3e8bb70dab8fa59cb485cf622350301e9120 [file] [log] [blame]
Stefan Reinauer05082732015-10-21 13:00:41 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2016 Google Inc
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 */
15
Stefan Reinauer86051f92010-03-23 15:53:38 +000016#ifndef _CONSOLE_CONSOLE_H
17#define _CONSOLE_CONSOLE_H
Stefan Reinauer850e7d42015-09-28 13:12:04 -070018
19int printk(int msg_level, const char *fmt, ...) __attribute__((format(printf, 2, 3)));
Stefan Reinauer05082732015-10-21 13:00:41 -070020
Stefan Reinauer86051f92010-03-23 15:53:38 +000021#endif