summaryrefslogtreecommitdiff
path: root/linux-core/drmP.h
diff options
context:
space:
mode:
authorEric Anholt <anholt@freebsd.org>2003-08-29 19:16:13 +0000
committerEric Anholt <anholt@freebsd.org>2003-08-29 19:16:13 +0000
commita7aebb6dac3287374721dd2101a4584f12c63c82 (patch)
tree7fa20b6fd3b750d18f0ed5709e2a8458ff4a4ab6 /linux-core/drmP.h
parentdb781291164dfa10538776748df7af901c6b20a2 (diff)
Add DRM(calloc), which is convenient, used by the new sis code, and takes
advantage of M_ZERO on BSDs.
Diffstat (limited to 'linux-core/drmP.h')
-rw-r--r--linux-core/drmP.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/linux-core/drmP.h b/linux-core/drmP.h
index e80f7788..8a995dbe 100644
--- a/linux-core/drmP.h
+++ b/linux-core/drmP.h
@@ -817,6 +817,7 @@ extern void DRM(mem_init)(void);
extern int DRM(mem_info)(char *buf, char **start, off_t offset,
int request, int *eof, void *data);
extern void *DRM(alloc)(size_t size, int area);
+extern void *DRM(calloc)(size_t nmemb, size_t size, int area);
extern void *DRM(realloc)(void *oldpt, size_t oldsize, size_t size,
int area);
extern void DRM(free)(void *pt, size_t size, int area);