mv cursetree/pty subdir

This commit is contained in:
Emile Clark-Boman 2025-09-13 10:47:48 +10:00
parent 878be07a71
commit 69745c81f7
7 changed files with 1 additions and 1 deletions

14
cursetree/pty/child.h Normal file
View file

@ -0,0 +1,14 @@
#ifndef DORNE_CHILD_H
#define DORNE_CHILD_H
#include <unistd.h>
struct d_child {
pid_t pid;
int fdmx; /* PTY master fd (read/write) */
int fderr; /* child's stderr (readonly) */
} __attribute__((packed, aligned(4)));
int spawnchild(struct d_child *child);
#endif /* DORNE_CHILD_H */