Skip to content

Commit 36737b4

Browse files
committed
modem: More implicit function decls
1 parent bf1101b commit 36737b4

File tree

4 files changed

+25
-5
lines changed

4 files changed

+25
-5
lines changed

comms/modemd/distinfo

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ SHA1 (patch-ag) = 3505bf5b749288de673970ea95ab3196669feca9
1313
SHA1 (patch-ah) = 9294419cd64c3b5cc9ebadc3a4c135a0a969262d
1414
SHA1 (patch-ai) = ac63e79fdef3fdc09d44f50f666aa850e2b674be
1515
SHA1 (patch-aj) = 2837ce9ac377aa6b4f7a8c96f63ff80fcdee9b17
16-
SHA1 (patch-ak) = 0d60a615020abad77dae56d783667e49112593e5
16+
SHA1 (patch-ak) = 4d84a331acb394e49d7216b84f33a0620095cfcd
1717
SHA1 (patch-al) = 13259e7c330aecd800cf108eec292d23c6d369b7
1818
SHA1 (patch-am) = d740f41abf89f760431f32ca7ffa25bf1b3bd4e1
1919
SHA1 (patch-an) = d86fb2d227fb8b4c246e8655f0f3e28806f46bea
@@ -23,8 +23,9 @@ SHA1 (patch-aq) = c4677194c2c8387de79e30c8d651f97692a35f4f
2323
SHA1 (patch-ar) = ae25a728c094f94a992b625fd405daedd096c5fd
2424
SHA1 (patch-as) = 5ac081a2200b72321973004803d15dd3b9d387b3
2525
SHA1 (patch-cf_sunos4.h) = efe0b9c58ad20247cbc313c1569f9d0be8901d14
26-
SHA1 (patch-common_dialog.c) = 2dd6fadd2a83eede976d63e15364650955cf9cca
26+
SHA1 (patch-common_dialog.c) = 5377aa5f9b53bbc2d5496b14069deb83375036d9
2727
SHA1 (patch-common_lock.c) = 9812865d1f75c387273285d278b729ee53c7139d
28+
SHA1 (patch-include_ttio.h) = 60c49bb94fd5455f6434dc537149a370e44965f2
2829
SHA1 (patch-incoming_login.c) = 62784076e0ac1e23e2e7a6f8c248f3e1fa6b6293
2930
SHA1 (patch-outgoing_tn.c) = 133c714eb6d33912f6edfcd12034b3155707d701
3031
SHA1 (patch-outgoing_tnstate.c) = 7ecc5645e2b4d854a784a7a52487fbef024fa51a

comms/modemd/patches/patch-ak

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@ $NetBSD: patch-ak,v 1.5 2010/12/30 09:02:52 obache Exp $
22

33
--- common/atparse.c.orig 1996-04-30 07:02:36.000000000 +0000
44
+++ common/atparse.c
5-
@@ -45,6 +45,7 @@ static char copyright[] =
5+
@@ -45,6 +45,8 @@ static char copyright[] =
66
#include "cdefs.h"
77
#include "global.h"
88
#include <ctype.h>
99
+#include <stdlib.h>
10+
+#include <string.h>
1011

1112
/* Convert a string of AT commands into a vector of pointers to individual
1213
commands. */

comms/modemd/patches/patch-common_dialog.c

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
$NetBSD: patch-common_dialog.c,v 1.1 2013/09/10 18:24:10 joerg Exp $
22

3-
--- common/dialog.c.orig 2013-09-10 11:53:40.000000000 +0000
3+
--- common/dialog.c.orig 1996-04-30 07:02:36.000000000 +0000
44
+++ common/dialog.c
5-
@@ -47,6 +47,7 @@ static char copyright[] =
5+
@@ -45,8 +45,10 @@ static char copyright[] =
6+
#include "cdefs.h"
7+
#include "global.h"
68
#include <stdio.h>
9+
+#include <string.h>
710
#include <fcntl.h>
811
#include <syslog.h>
912
+#include <sys/ioctl.h>
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
$NetBSD$
2+
3+
Add missing include for sleep(3).
4+
5+
--- include/ttio.h.orig 2025-12-18 13:21:08.539221227 +0000
6+
+++ include/ttio.h
7+
@@ -42,6 +42,8 @@
8+
#include <termios.h>
9+
#endif
10+
11+
+#include <unistd.h>
12+
+
13+
#ifndef CVT_TTYNAME
14+
#define CVT_TTYNAME(buf, name) sprintf (buf, "/dev/%s", name)
15+
#endif

0 commit comments

Comments
 (0)