1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (c) 2013 Google, Inc
4  */
5 
6 #ifndef __SANDBOX_SOUND_H
7 #define __SANDBOX_SOUND_H
8 
9 int sound_play(unsigned int msec, unsigned int frequency);
10 
11 int sound_init(const void *blob);
12 
13 #endif
14