diff options
author | K. Richard Pixley <rich@cygnus> | 1993-09-14 20:08:23 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1993-09-14 20:08:23 +0000 |
commit | b70b042d025f092b70c68e78e4d307d7a3bc6a01 (patch) | |
tree | b39fdbb92413d3d96fd9976e86a7556e28eae356 /gdb/serial.h | |
parent | a94abe5bb7a71b207691f8b50406166eefda8186 (diff) | |
download | gdb-b70b042d025f092b70c68e78e4d307d7a3bc6a01.zip gdb-b70b042d025f092b70c68e78e4d307d7a3bc6a01.tar.gz gdb-b70b042d025f092b70c68e78e4d307d7a3bc6a01.tar.bz2 |
fix serial.h inclusion
Diffstat (limited to 'gdb/serial.h')
-rw-r--r-- | gdb/serial.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/serial.h b/gdb/serial.h index 84916d3..dfe15bc 100644 --- a/gdb/serial.h +++ b/gdb/serial.h @@ -17,6 +17,9 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef SERIAL_H +#define SERIAL_H + /* Terminal state pointer. This is specific to each type of interface. */ typedef PTR serial_ttystate; @@ -161,3 +164,5 @@ extern int job_control; /* Set the process group of the caller to its own pid, or do nothing if we lack job control. */ extern int gdb_setpgid PARAMS ((void)); + +#endif /* SERIAL_H */ |