/*====================================================================* * * Copyright (c) 2013 Qualcomm Atheros, Inc. * * All rights reserved. * *====================================================================*/ /*====================================================================* * * void closeport (struct _file_ * port); * * serial.h * * close a serial port; * * Contributor(s): * Charles Maier * *--------------------------------------------------------------------*/ #ifndef CLOSEPORT_SOURCE #define CLOSEPORT_SOURCE #include #include #include "../tools/types.h" #include "../serial/serial.h" void closeport (struct _file_ * port) { close (port->file); return; } #endif