forked from mirrors/tftp-hpa-google

The source code was a mix of different styles; normalize on NASM style; basically K&R style with 4 space indentation.
23 lines
620 B
C
23 lines
620 B
C
/* ----------------------------------------------------------------------- *
|
|
*
|
|
* Copyright 2001-2006 H. Peter Anvin - All Rights Reserved
|
|
*
|
|
* This program is free software available under the same license
|
|
* as the "OpenBSD" operating system, distributed at
|
|
* http://www.openbsd.org/.
|
|
*
|
|
* ----------------------------------------------------------------------- */
|
|
|
|
/*
|
|
* recvfrom.h
|
|
*
|
|
* Header for recvfrom substitute
|
|
*
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
int
|
|
myrecvfrom(int s, void *buf, int len, unsigned int flags,
|
|
struct sockaddr *from, socklen_t * fromlen,
|
|
struct sockaddr_in *myaddr);
|