Diff for /embedaddon/sudo/compat/memrchr.c between versions 1.1.1.1 and 1.1.1.2

version 1.1.1.1, 2012/02/21 16:23:02 version 1.1.1.2, 2013/07/22 10:46:11
Line 1 Line 1
 /*  /*
 * Copyright (c) 2007, 2010-2011 Todd C. Miller <Todd.Miller@courtesan.com> * Copyright (c) 2007, 2010-2011, 2013
  *        Todd C. Miller <Todd.Miller@courtesan.com>
  *   *
  * Permission to use, copy, modify, and distribute this software for any   * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above   * purpose with or without fee is hereby granted, provided that the above
Line 16 Line 17
   
 #include <config.h>  #include <config.h>
   
   #ifndef HAVE_MEMRCHR
   
 #include <sys/types.h>  #include <sys/types.h>
   
 #include "missing.h"  #include "missing.h"
Line 38  memrchr(const void *s, int c, size_t n) Line 41  memrchr(const void *s, int c, size_t n)
     }      }
     return (void *)0;      return (void *)0;
 }  }
   #endif /* HAVE_MEMRCHR */

Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>