Revision fd3ab91ce651d4d0a4ecc21fb7d2246a4da056d5 authored by Junio C Hamano on 28 March 2017, 20:52:23 UTC, committed by Junio C Hamano on 28 March 2017, 20:52:23 UTC
Fix for NO_PTHREADS build.

* jk/execv-dashed-external:
  run-command: fix segfault when cleaning forked async process
2 parent s c953cf9 + 7b91929
Raw File
varint.h
#ifndef VARINT_H
#define VARINT_H

extern int encode_varint(uintmax_t, unsigned char *);
extern uintmax_t decode_varint(const unsigned char **);

#endif /* VARINT_H */
back to top