Move DIV_ROUNDUP out of public header, remove unused ALIGN

This commit is contained in:
Kristian Høgsberg 2012-03-30 10:28:39 -04:00
parent 485dd7b6e2
commit ba32db9532
2 changed files with 2 additions and 2 deletions

View file

@ -39,6 +39,8 @@
#include "wayland-util.h"
#include "wayland-private.h"
#define DIV_ROUNDUP(n, a) ( ((n) + ((a) - 1)) / (a) )
struct wl_buffer {
char data[4096];
int head, tail;