summaryrefslogtreecommitdiff
path: root/packages/libc/src/bnetdbh.inc
diff options
context:
space:
mode:
Diffstat (limited to 'packages/libc/src/bnetdbh.inc')
-rw-r--r--packages/libc/src/bnetdbh.inc18
1 files changed, 18 insertions, 0 deletions
diff --git a/packages/libc/src/bnetdbh.inc b/packages/libc/src/bnetdbh.inc
new file mode 100644
index 0000000000..b445a89e81
--- /dev/null
+++ b/packages/libc/src/bnetdbh.inc
@@ -0,0 +1,18 @@
+
+type
+ Pnetent = ^netent;
+ netent = record
+ n_name : Pchar;
+ n_aliases : ^Pchar;
+ n_addrtype : longint;
+ n_net : uint32_t;
+ end;
+ PPNetEnt = ^Pnetent;
+
+
+{ ---------------------------------------------------------------------
+ Borland compatibility types
+ ---------------------------------------------------------------------}
+
+Type
+ TNetEnt = netent;