Skip to content

Commit

Permalink
Merge pull request #205 from skliper/fix204-header_guard
Browse files Browse the repository at this point in the history
Fix #204, Apply header guard standard
  • Loading branch information
astrogeco committed Feb 24, 2022
2 parents 5ffc027 + 86c194b commit 0fde7e5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Subsystems/cmdUtil/SendUdp.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
** See the License for the specific language governing permissions and
** limitations under the License.
*/
#ifndef _sendudp_
#define _sendudp_
#ifndef SENDUDP_H
#define SENDUDP_H

int SendUdp(char *hostname, char *portNum, unsigned char *packetData, int packetSize);

#endif /* _sendudp_ */
#endif

0 comments on commit 0fde7e5

Please sign in to comment.