summary refs log tree commit diff
path: root/include/scratch_buffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/scratch_buffer.h')
-rw-r--r--include/scratch_buffer.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/scratch_buffer.h b/include/scratch_buffer.h
index 6f92694bb8..1a50cdf647 100644
--- a/include/scratch_buffer.h
+++ b/include/scratch_buffer.h
@@ -58,17 +58,16 @@
 */
 
 #include <stdbool.h>
+#include <stddef.h>
 #include <stdlib.h>
 
-#include <libc-internal.h>
-
 /* Scratch buffer.  Must be initialized with scratch_buffer_init
    before its use.  */
 struct scratch_buffer {
   void *data;    /* Pointer to the beginning of the scratch area.  */
   size_t length; /* Allocated space at the data pointer, in bytes.  */
   char __space[1024]
-    __attribute__ ((aligned (__alignof__ (libc_max_align_t))));
+    __attribute__ ((aligned (__alignof__ (max_align_t))));
 };
 
 /* Initializes *BUFFER so that BUFFER->data points to BUFFER->__space