Correzioni varie, imprecisioni nella gestione dei segnali, maggiori dettagli
[gapil.git] / listati / stack_t.h
diff --git a/listati/stack_t.h b/listati/stack_t.h
new file mode 100644 (file)
index 0000000..5dfc3fd
--- /dev/null
@@ -0,0 +1,5 @@
+typedef struct {
+    void  *ss_sp;     /* Base address of stack */
+    int    ss_flags;  /* Flags */
+    size_t ss_size;   /* Number of bytes in stack */
+} stack_t;