#include "common.h"
#include "sound.h"

int sound_init(int audiofd, layer *info, int stereo) {
    return 0;
}

int sound_open() {
    return 0;
}

int sound_close(int audiofd) {
    return 0;
}

int sound_write(int audiofd, const void *buffer, size_t count) {
    return 0;
}
